push more things in the str lib.
[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 extern char const __m_b64chars[64];
41
42 /****************************************************************************/
43 /* char related                                                             */
44 /****************************************************************************/
45
46 static inline int hexval(int c) {
47     int v = __m_strdigits[c];
48     return !(c & ~127) && v < 16 ? v : -1;
49 }
50
51 static inline int base64val(int c) {
52     return (c & ~127) ? -1 : __m_b64digits[c];
53 }
54
55 /****************************************************************************/
56 /* length related                                                           */
57 /****************************************************************************/
58
59 static inline int m_strisempty(const char *s) {
60     return !s || !*s;
61 }
62
63 static inline ssize_t m_strlen(const char *s) {
64     return s ? strlen(s) : 0;
65 }
66
67 static inline ssize_t m_strnlen(const char *s, ssize_t n) {
68     const char *p = memchr(s, '\0', n);
69     return p ? p - s : n;
70 }
71
72 /****************************************************************************/
73 /* comparisons                                                              */
74 /****************************************************************************/
75
76 static inline int m_strcmp(const char *a, const char *b) {
77     return strcmp(NONULL(a), NONULL(b));
78 }
79
80 static inline int m_strcasecmp(const char *a, const char *b) {
81     return strcasecmp(NONULL(a), NONULL(b));
82 }
83
84 static inline int m_strncmp(const char *a, const char *b, size_t n) {
85     return strncmp (NONULL(a), NONULL(b), n);
86 }
87
88 static inline int m_strncasecmp(const char *a, const char *b, size_t n) {
89     return strncasecmp(NONULL(a), NONULL(b), n);
90 }
91
92 /****************************************************************************/
93 /* making copies                                                            */
94 /****************************************************************************/
95
96 static inline char *m_strdup(const char *s) {
97     ssize_t len = m_strlen(s);
98     return len ? p_dup(s, len + 1) : NULL;
99 }
100
101 ssize_t m_strcpy(char *dst, ssize_t n, const char *src);
102 ssize_t m_strncpy(char *dst, ssize_t n, const char *src, ssize_t l);
103
104 static inline ssize_t m_strcat(char *dst, ssize_t n, const char *src) {
105     ssize_t dlen = m_strnlen(dst, n - 1);
106     return dlen + m_strcpy(dst + dlen, n - dlen, src);
107 }
108
109 static inline ssize_t
110 m_strncat(char *dst, ssize_t n, const char *src, ssize_t l) {
111     ssize_t dlen = m_strnlen(dst, n - 1);
112     return dlen + m_strncpy(dst + dlen, n - dlen, src, l);
113 }
114
115 /****************************************************************************/
116 /* parsing related                                                          */
117 /****************************************************************************/
118
119 static inline const char *skipspaces(const char *s) {
120     while (*s && isspace((unsigned char)*s))
121         s++;
122     return s;
123 }
124 static inline char *vskipspaces(const char *s) {
125     return (char *)skipspaces(s);
126 }
127
128 #endif /* MUTT_LIB_LIB_STR_H */