working on the demosystem, added libtreestore
[andemo] / src / util.h
index 61ae532..69b8f53 100644 (file)
 
 #define malloc_nf(sz)  malloc_nf_impl(sz, __FILE__, __LINE__)
 void *malloc_nf_impl(size_t sz, const char *file, int line);
-
 #define calloc_nf(num, sz)     calloc_nf_impl(num, sz, __FILE__, __LINE__)
 void *calloc_nf_impl(size_t num, size_t sz, const char *file, int line);
-
 #define realloc_nf(p, sz)      realloc_nf_impl(p, sz, __FILE__, __LINE__)
 void *realloc_nf_impl(void *p, size_t sz, const char *file, int line);
-
 #define strdup_nf(s)   strdup_nf_impl(s, __FILE__, __LINE__)
 char *strdup_nf_impl(const char *s, const char *file, int line);
 
+int match_prefix(const char *str, const char *prefix);
+
 #endif /* UTIL_H_ */