summaryrefslogtreecommitdiffhomepage
path: root/docs/csptr_api.md
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2021-10-29 16:24:50 +0200
committerTyge Løvset <[email protected]>2021-10-29 16:24:50 +0200
commit9708235ec4147d2c0428c9ae5186fad452b116ad (patch)
tree523a12b1ebee4a138e12c02c13c0a38d5f818f93 /docs/csptr_api.md
parent0205c4913430aa54eb0536eb1621287da719be1f (diff)
downloadSTC-modified-9708235ec4147d2c0428c9ae5186fad452b116ad.tar.gz
STC-modified-9708235ec4147d2c0428c9ae5186fad452b116ad.zip
Renamed ..._value_t -> ..._value, etc. Deprecated, still works for cvec, cdeq, cmap, csmap, cslist
Diffstat (limited to 'docs/csptr_api.md')
-rw-r--r--docs/csptr_api.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/csptr_api.md b/docs/csptr_api.md
index bd9bf7d2..60825152 100644
--- a/docs/csptr_api.md
+++ b/docs/csptr_api.md
@@ -60,8 +60,8 @@ bool csptr_X_equals(const csptr_X* x, const csptr_X* y);
| Type name | Type definition | Used to represent... |
|:--------------------|:--------------------------------------------------------------|:-------------------------|
| `csptr_null` | `{NULL, NULL}` | Init nullptr const |
-| `csptr_X` | `struct { csptr_X_value_t* get; atomic_count_t* use_count; }` | The csptr type |
-| `csptr_X_value_t` | `i_val` | The csptr element type |
+| `csptr_X` | `struct { csptr_X_value* get; atomic_count_t* use_count; }` | The csptr type |
+| `csptr_X_value` | `i_val` | The csptr element type |
| `atomic_count_t` | `long` | The reference counter |
## Example