exit str_cmp enters m_strcmp
[apps/madmutt.git] / lib / str.h
index ef5211d..b2457d4 100644 (file)
--- a/lib/str.h
+++ b/lib/str.h
@@ -12,8 +12,6 @@
 
 #include <sys/types.h>
 
-#define NONULL(x) x?x:""
-
 # define HUGE_STRING     5120
 # define LONG_STRING     1024
 # define STRING          256
  * safety wrappers/replacements
  * (mostly only difference: safely handle NULL strings)
  */
-char *str_dup (const char*);
 char *str_cat (char*, size_t, const char*);
 char *str_ncat (char*, size_t, const char*, size_t);
-int str_cmp (const char*, const char*);
 int str_casecmp (const char*, const char*);
 int str_ncmp (const char*, const char*, size_t);
 int str_ncasecmp (const char*, const char*, size_t);
 int str_coll (const char*, const char*);
-size_t str_len (const char*);
 
 /*
  * tools