diff options
| author | Tyge Løvset <[email protected]> | 2020-09-18 11:55:29 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2020-09-18 11:55:29 +0200 |
| commit | 681873e4cb6ea076b79c6c70b2df2ba4e4c19bda (patch) | |
| tree | 69c0c3290189163937d4ab4203fe4565094657b0 /stc/cstack.h | |
| parent | 692ab82818e2d65177e06d7717d9184b7bc27ff1 (diff) | |
| download | STC-modified-681873e4cb6ea076b79c6c70b2df2ba4e4c19bda.tar.gz STC-modified-681873e4cb6ea076b79c6c70b2df2ba4e4c19bda.zip | |
Changed <container>_ini macro constant to <container>_INIT, and <container>_destroy() to <container>_del.
Diffstat (limited to 'stc/cstack.h')
| -rw-r--r-- | stc/cstack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stc/cstack.h b/stc/cstack.h index 0d914445..0351a545 100644 --- a/stc/cstack.h +++ b/stc/cstack.h @@ -56,7 +56,7 @@ STC_INLINE cstack_##X \
cstack_##X##_init() {return ctype##_init();} \
STC_INLINE void \
- cstack_##X##_destroy(cstack_##X* self) {ctype##_destroy(self);} \
+ cstack_##X##_del(cstack_##X* self) {ctype##_del(self);} \
STC_INLINE size_t \
cstack_##X##_size(cstack_##X pq) {return ctype##_size(pq);} \
STC_INLINE bool \
|
