X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=lib%2Fstr.h;h=140a4bac71f35513cb3ccc3223cb906a5396ab5e;hb=207c707f2c7073a6fbd14124197a559d9d471f65;hp=bc3cb82a8856b65b42eef1a3cae5d9afe69690f8;hpb=c6b9d35ed9361e4defab9762a7480d5126405ae9;p=apps%2Fmadmutt.git diff --git a/lib/str.h b/lib/str.h index bc3cb82..140a4ba 100644 --- a/lib/str.h +++ b/lib/str.h @@ -30,22 +30,10 @@ # define ISSPACE(c) isspace((unsigned char)c) # define ISBLANK(c) (c == ' ' || c == '\t') -# define strfcpy(A,B,C) m_strcpy(A,C,B) /* this macro must check for *c == 0 since isspace(0) has * unreliable behavior on some systems */ # define SKIPWS(c) while (*(c) && isspace ((unsigned char) *(c))) c++; -/* - * safety wrappers/replacements - * (mostly only difference: safely handle NULL strings) - */ -char *str_cat (char*, size_t, const char*); -char *str_ncat (char*, size_t, const char*, size_t); -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*); - /* * tools */