X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-lib%2Fstr.h;h=29b8817fe56bf95432f9ab94ba5b4632b870e3cf;hp=e319f2a40b69156858db08d06065d3c8cb745ab9;hb=b36dc16c428cc2b1371bb99c0581aa014f302791;hpb=238b70e39b78f585c586bd51aef41988b3cc73d1 diff --git a/lib-lib/str.h b/lib-lib/str.h index e319f2a..29b8817 100644 --- a/lib-lib/str.h +++ b/lib-lib/str.h @@ -21,11 +21,42 @@ #define MUTT_LIB_LIB_STR_H #include +#include + #include "../lib/str.h" #include "mem.h" +#define HUGE_STRING 5120 +#define LONG_STRING 1024 +#define STRING 256 +#define SHORT_STRING 128 + #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]; +extern char const __m_b64chars[64]; + +extern char const __m_b36chars_lower[36]; +extern char const __m_b36chars_upper[36]; + +/****************************************************************************/ +/* char related */ +/****************************************************************************/ + +static inline int hexval(int c) { + return !(c & ~127) && __m_strdigits[c] < 16 ? __m_strdigits[c] : -1; +} + +static inline int base64val(int c) { + return (c & ~127) ? -1 : __m_b64digits[c]; +} + +/****************************************************************************/ +/* length related */ +/****************************************************************************/ static inline int m_strisempty(const char *s) { return !s || !*s; @@ -40,10 +71,9 @@ static inline ssize_t m_strnlen(const char *s, ssize_t n) { return p ? p - s : n; } -static inline char *m_strdup(const char *s) { - ssize_t len = m_strlen(s); - return len ? p_dup(s, len + 1) : NULL; -} +/****************************************************************************/ +/* comparisons */ +/****************************************************************************/ static inline int m_strcmp(const char *a, const char *b) { return strcmp(NONULL(a), NONULL(b)); @@ -61,6 +91,14 @@ static inline int m_strncasecmp(const char *a, const char *b, size_t n) { return strncasecmp(NONULL(a), NONULL(b), n); } +/****************************************************************************/ +/* making copies */ +/****************************************************************************/ + +static inline char *m_strdup(const char *s) { + ssize_t len = m_strlen(s); + return len ? p_dup(s, len + 1) : NULL; +} ssize_t m_strcpy(char *dst, ssize_t n, const char *src); ssize_t m_strncpy(char *dst, ssize_t n, const char *src, ssize_t l); @@ -76,4 +114,17 @@ m_strncat(char *dst, ssize_t n, const char *src, ssize_t l) { return dlen + m_strncpy(dst + dlen, n - dlen, src, l); } +/****************************************************************************/ +/* parsing related */ +/****************************************************************************/ + +static inline const char *skipspaces(const char *s) { + while (*s && isspace((unsigned char)*s)) + s++; + return s; +} +static inline char *vskipspaces(const char *s) { + return (char *)skipspaces(s); +} + #endif /* MUTT_LIB_LIB_STR_H */