From 681873e4cb6ea076b79c6c70b2df2ba4e4c19bda Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Fri, 18 Sep 2020 11:55:29 +0200 Subject: Changed _ini macro constant to _INIT, and _destroy() to _del. --- stc/cstack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stc/cstack.h') 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 \ -- cgit v1.2.3