replace SKIPWS with a proper inline func with the right API.
[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 /****************************************************************************/
39 /* length related                                                           */
40 /****************************************************************************/
41
42 static inline int m_strisempty(const char *s) {
43     return !s || !*s;
44 }
45
46 static inline ssize_t m_strlen(const char *s) {
47     return s ? strlen(s) : 0;
48 }
49
50 static inline ssize_t m_strnlen(const char *s, ssize_t n) {
51     const char *p = memchr(s, '\0', n);
52     return p ? p - s : n;
53 }
54
55 /****************************************************************************/
56 /* comparisons                                                              */
57 /****************************************************************************/
58
59 static inline int m_strcmp(const char *a, const char *b) {
60     return strcmp(NONULL(a), NONULL(b));
61 }
62
63 static inline int m_strcasecmp(const char *a, const char *b) {
64     return strcasecmp(NONULL(a), NONULL(b));
65 }
66
67 static inline int m_strncmp(const char *a, const char *b, size_t n) {
68     return strncmp (NONULL(a), NONULL(b), n);
69 }
70
71 static inline int m_strncasecmp(const char *a, const char *b, size_t n) {
72     return strncasecmp(NONULL(a), NONULL(b), n);
73 }
74
75 /****************************************************************************/
76 /* making copies                                                            */
77 /****************************************************************************/
78
79 static inline char *m_strdup(const char *s) {
80     ssize_t len = m_strlen(s);
81     return len ? p_dup(s, len + 1) : NULL;
82 }
83
84 ssize_t m_strcpy(char *dst, ssize_t n, const char *src);
85 ssize_t m_strncpy(char *dst, ssize_t n, const char *src, ssize_t l);
86
87 static inline ssize_t m_strcat(char *dst, ssize_t n, const char *src) {
88     ssize_t dlen = m_strnlen(dst, n - 1);
89     return dlen + m_strcpy(dst + dlen, n - dlen, src);
90 }
91
92 static inline ssize_t
93 m_strncat(char *dst, ssize_t n, const char *src, ssize_t l) {
94     ssize_t dlen = m_strnlen(dst, n - 1);
95     return dlen + m_strncpy(dst + dlen, n - dlen, src, l);
96 }
97
98 /****************************************************************************/
99 /* parsing related                                                          */
100 /****************************************************************************/
101
102 static inline const char *skipspaces(const char *s) {
103     while (*s && isspace((unsigned char)*s))
104         s++;
105     return s;
106 }
107 static inline char *vskipspaces(const char *s) {
108     return (char *)skipspaces(s);
109 }
110
111 #endif /* MUTT_LIB_LIB_STR_H */