aboutsummaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2016-12-22 16:31:28 +0100
committerTomasz Kramkowski <tk@the-tk.com>2016-12-22 16:40:26 +0100
commiteee1fedc3a69e503fab74248937e35e71dee4992 (patch)
treead10d93a167075baa42141345002858257f9c8d0 /util.h
parentda3b7ca6b023ea2dadcf15542dcc9a1bc57a3d47 (diff)
downloadhktool-eee1fedc3a69e503fab74248937e35e71dee4992.tar.gz
hktool-eee1fedc3a69e503fab74248937e35e71dee4992.tar.xz
hktool-eee1fedc3a69e503fab74248937e35e71dee4992.zip
util: remove unused functions
Removed: xstrmalloc, xmalloc, xrealloc, xstrcut, szadd, szmul.
Diffstat (limited to 'util.h')
-rw-r--r--util.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/util.h b/util.h
index 356366c..d1f459a 100644
--- a/util.h
+++ b/util.h
@@ -22,13 +22,7 @@
#include <stdbool.h>
#include <stddef.h>
-size_t szadd(size_t a, size_t b);
-size_t szmul(size_t a, size_t b);
void *xstrmalloc(size_t size);
-char *xstrdup(const char *s);
-void *xmalloc(size_t size);
-void *xrealloc(void *p, size_t size);
-char *xstrcut(const char *s, size_t offt, size_t len);
int xstrcasecmp(const char *s1, const char *s2);
#endif /* UTIL_H */