X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-lib%2Fstr.h;h=e456fdd12a3c54580cc1a08dda5fd452de74a981;hp=25abac85e79d461b3d946e1ac260f31e8b2c24bd;hb=f2ff91d8b7627e22af9715d384b6f9e9e802a39e;hpb=d031b12a6bfef909d3f4170a7b5e438f4dd5f67e diff --git a/lib-lib/str.h b/lib-lib/str.h index 25abac8..e456fdd 100644 --- a/lib-lib/str.h +++ b/lib-lib/str.h @@ -29,8 +29,8 @@ #define STRING 256 #define SHORT_STRING 128 -#define NONULL(x) (x?x:"") -#define ISSPACE(c) isspace((unsigned char)c) +#define NONULL(x) (x?x:"") +#define ISSPACE(c) isspace((unsigned char)c) extern unsigned char const __m_strdigits[128]; extern signed char const __m_b64digits[128]; @@ -100,7 +100,7 @@ static inline int m_strcasecmp(const char *a, const char *b) { } static inline int m_strncmp(const char *a, const char *b, ssize_t n) { - return strncmp (NONULL(a), NONULL(b), n); + return strncmp(NONULL(a), NONULL(b), n); } static inline int m_strncasecmp(const char *a, const char *b, ssize_t n) {