move some decoding functions right into the str module, with a bit more
[apps/madmutt.git] / lib-lib / str.h
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2006 Pierre Habouzit
18  */
19
20 #ifndef MUTT_LIB_LIB_STR_H
21 #define MUTT_LIB_LIB_STR_H
22
23 #include <string.h>
24 #include <ctype.h>
25
26 #include "../lib/str.h"
27
28 #include "mem.h"
29
30 #define HUGE_STRING     5120
31 #define LONG_STRING     1024
32 #define STRING          256
33 #define SHORT_STRING    128
34
35 #define NONULL(x) (x?x:"")
36 #define ISSPACE(c) isspace((unsigned char)c)
37
38 extern unsigned char const __m_strdigits[128];
39 extern signed char const __m_b64digits[128];
40
41 /****************************************************************************/
42 /* char related                                                             */
43 /****************************************************************************/
44
45 static inline int hexval(int c) {
46     int v = __m_strdigits[c];
47     return !(c & ~127) && v < 16 ? v : -1;
48 }
49
50 static inline int base64val(int c) {
51     return (c & ~127) ? -1 : __m_b64digits[c];
52 }
53
54 /****************************************************************************/
55 /* length related                                                           */
56 /****************************************************************************/
57
58 static inline int m_strisempty(const char *s) {
59     return !s || !*s;
60 }
61
62 static inline ssize_t m_strlen(const char *s) {
63     return s ? strlen(s) : 0;
64 }
65
66 static inline ssize_t m_strnlen(const char *s, ssize_t n) {
67     const char *p = memchr(s, '\0', n);
68     return p ? p - s : n;
69 }
70
71 /****************************************************************************/
72 /* comparisons                                                              */
73 /****************************************************************************/
74
75 static inline int m_strcmp(const char *a, const char *b) {
76     return strcmp(NONULL(a), NONULL(b));
77 }
78
79 static inline int m_strcasecmp(const char *a, const char *b) {
80     return strcasecmp(NONULL(a), NONULL(b));
81 }
82
83 static inline int m_strncmp(const char *a, const char *b, size_t n) {
84     return strncmp (NONULL(a), NONULL(b), n);
85 }
86
87 static inline int m_strncasecmp(const char *a, const char *b, size_t n) {
88     return strncasecmp(NONULL(a), NONULL(b), n);
89 }
90
91 /****************************************************************************/
92 /* making copies                                                            */
93 /****************************************************************************/
94
95 static inline char *m_strdup(const char *s) {
96     ssize_t len = m_strlen(s);
97     return len ? p_dup(s, len + 1) : NULL;
98 }
99
100 ssize_t m_strcpy(char *dst, ssize_t n, const char *src);
101 ssize_t m_strncpy(char *dst, ssize_t n, const char *src, ssize_t l);
102
103 static inline ssize_t m_strcat(char *dst, ssize_t n, const char *src) {
104     ssize_t dlen = m_strnlen(dst, n - 1);
105     return dlen + m_strcpy(dst + dlen, n - dlen, src);
106 }
107
108 static inline ssize_t
109 m_strncat(char *dst, ssize_t n, const char *src, ssize_t l) {
110     ssize_t dlen = m_strnlen(dst, n - 1);
111     return dlen + m_strncpy(dst + dlen, n - dlen, src, l);
112 }
113
114 /****************************************************************************/
115 /* parsing related                                                          */
116 /****************************************************************************/
117
118 static inline const char *skipspaces(const char *s) {
119     while (*s && isspace((unsigned char)*s))
120         s++;
121     return s;
122 }
123 static inline char *vskipspaces(const char *s) {
124     return (char *)skipspaces(s);
125 }
126
127 #endif /* MUTT_LIB_LIB_STR_H */