summaryrefslogtreecommitdiffhomepage
path: root/misc
diff options
context:
space:
mode:
Diffstat (limited to 'misc')
-rw-r--r--misc/archived/csmap.h4
-rw-r--r--misc/archived/cstr.h12
-rw-r--r--misc/examples/rawptr_elements.c2
-rw-r--r--misc/examples/shape.c2
4 files changed, 10 insertions, 10 deletions
diff --git a/misc/archived/csmap.h b/misc/archived/csmap.h
index 6f3ee98b..aa7fc85e 100644
--- a/misc/archived/csmap.h
+++ b/misc/archived/csmap.h
@@ -400,7 +400,7 @@ _cx_memb(_erase_r_)(_cx_node *tn, const _cx_rawkey* rkey, int *erased) {
} else { /* unlink node */
tx = tn;
tn = tn->link[tn->link[0]->level == 0];
- c_FREE(tx);
+ c_free(tx);
}
}
if (tn->link[0]->level < tn->level - 1 || tn->link[1]->level < tn->level - 1) {
@@ -492,7 +492,7 @@ _cx_memb(_drop_r_)(_cx_node* tn) {
_cx_memb(_drop_r_)(tn->link[0]);
_cx_memb(_drop_r_)(tn->link[1]);
_cx_memb(_value_drop)(&tn->value);
- c_FREE(tn);
+ c_free(tn);
}
}
diff --git a/misc/archived/cstr.h b/misc/archived/cstr.h
index f4e9dde2..9111fe6d 100644
--- a/misc/archived/cstr.h
+++ b/misc/archived/cstr.h
@@ -77,7 +77,7 @@ STC_INLINE size_t cstr_size(const cstr* self) { return _cstr_p(self)->size
STC_INLINE size_t cstr_capacity(cstr s) { return _cstr_p(&s)->cap; }
STC_INLINE bool cstr_empty(cstr s) { return _cstr_p(&s)->size == 0; }
STC_INLINE void cstr_drop(cstr* self)
- { if (_cstr_p(self)->cap) c_FREE(_cstr_p(self)); }
+ { if (_cstr_p(self)->cap) c_free(_cstr_p(self)); }
STC_INLINE cstr cstr_clone(cstr s)
{ return cstr_from_n(s.str, _cstr_p(&s)->size); }
STC_INLINE void cstr_clear(cstr* self)
@@ -142,7 +142,7 @@ STC_INLINE char* cstr_append_uninit(cstr *self, size_t n) {
STC_INLINE cstr* cstr_take(cstr* self, cstr s) {
if (self->str != s.str && _cstr_p(self)->cap)
- c_FREE(_cstr_p(self));
+ c_free(_cstr_p(self));
self->str = s.str;
return self;
}
@@ -202,7 +202,7 @@ cstr_reserve(cstr* self, const size_t cap) {
cstr_priv *p = _cstr_p(self);
const size_t oldcap = p->cap;
if (cap > oldcap) {
- p = (cstr_priv*) c_REALLOC(((oldcap != 0) & (p != &_cstr_nullrep)) ? p : NULL, _cstr_opt_mem(cap));
+ p = (cstr_priv*) c_realloc(((oldcap != 0) & (p != &_cstr_nullrep)) ? p : NULL, _cstr_opt_mem(cap));
if (!p) return NULL;
self->str = p->chr;
if (oldcap == 0) self->str[p->size = 0] = '\0';
@@ -222,7 +222,7 @@ cstr_resize(cstr* self, const size_t len, const char fill) {
STC_DEF cstr
cstr_from_n(const char* str, const size_t n) {
if (n == 0) return cstr_NULL;
- cstr_priv* prv = (cstr_priv*) c_MALLOC(_cstr_opt_mem(n));
+ cstr_priv* prv = (cstr_priv*) c_malloc(_cstr_opt_mem(n));
cstr s = {(char *) memcpy(prv->chr, str, n)};
s.str[prv->size = n] = '\0';
prv->cap = _cstr_opt_cap(n);
@@ -313,11 +313,11 @@ STC_DEF void
cstr_replace_at_sv(cstr* self, const size_t pos, size_t len, csview repl) {
const size_t sz = cstr_size(self);
if (len > sz - pos) len = sz - pos;
- char buf[256], *xstr = repl.size > 256 ? c_MALLOC(repl.size) : buf;
+ char buf[256], *xstr = repl.size > 256 ? c_malloc(repl.size) : buf;
memcpy(xstr, repl.str, repl.size);
_cstr_internal_move(self, pos + len, pos + repl.size);
memcpy(&self->str[pos], xstr, repl.size);
- if (repl.size > 256) c_FREE(xstr);
+ if (repl.size > 256) c_free(xstr);
}
STC_DEF cstr
diff --git a/misc/examples/rawptr_elements.c b/misc/examples/rawptr_elements.c
index 05910c77..96a9ba86 100644
--- a/misc/examples/rawptr_elements.c
+++ b/misc/examples/rawptr_elements.c
@@ -13,7 +13,7 @@ typedef int64_t inttype;
#define i_valfrom(raw) c_NEW(inttype, raw)
#define i_valto(x) **x
#define i_valclone(x) c_NEW(inttype, *x)
-#define i_valdrop(x) c_FREE(*x)
+#define i_valdrop(x) c_free(*x)
#include <stc/cmap.h>
// With cbox:
diff --git a/misc/examples/shape.c b/misc/examples/shape.c
index 75a5e174..9ce0b946 100644
--- a/misc/examples/shape.c
+++ b/misc/examples/shape.c
@@ -38,7 +38,7 @@ void Shape_delete(Shape* shape)
{
if (shape) {
shape->api->drop(shape);
- c_FREE(shape);
+ c_free(shape);
}
}