reimplement getdnsdomainname
[apps/madmutt.git] / lib-lib / str.h
index 55a89b9..4786d27 100644 (file)
@@ -23,8 +23,6 @@
 #include <string.h>
 #include <ctype.h>
 
 #include <string.h>
 #include <ctype.h>
 
-#include "../lib/str.h"
-
 #include "mem.h"
 
 #define HUGE_STRING     5120
 #include "mem.h"
 
 #define HUGE_STRING     5120
@@ -43,7 +41,7 @@ extern char const __m_b36chars_lower[36];
 extern char const __m_b36chars_upper[36];
 
 /****************************************************************************/
 extern char const __m_b36chars_upper[36];
 
 /****************************************************************************/
-/* char related                                                             */
+/* conversions                                                              */
 /****************************************************************************/
 
 static inline int hexval(int c) {
 /****************************************************************************/
 
 static inline int hexval(int c) {
@@ -54,6 +52,11 @@ static inline int base64val(int c) {
     return (c & ~127) ? -1 : __m_b64digits[c];
 }
 
     return (c & ~127) ? -1 : __m_b64digits[c];
 }
 
+static inline void m_strtolower(char *p) {
+    for (; *p; p++)
+        *p = tolower((unsigned char)*p);
+}
+
 /****************************************************************************/
 /* length related                                                           */
 /****************************************************************************/
 /****************************************************************************/
 /* length related                                                           */
 /****************************************************************************/
@@ -83,11 +86,11 @@ static inline int m_strcasecmp(const char *a, const char *b) {
     return strcasecmp(NONULL(a), NONULL(b));
 }
 
     return strcasecmp(NONULL(a), NONULL(b));
 }
 
-static inline int m_strncmp(const char *a, const char *b, size_t n) {
+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, size_t n) {
+static inline int m_strncasecmp(const char *a, const char *b, ssize_t n) {
     return strncasecmp(NONULL(a), NONULL(b), n);
 }
 
     return strncasecmp(NONULL(a), NONULL(b), n);
 }
 
@@ -100,6 +103,10 @@ static inline char *m_strdup(const char *s) {
     return len ? p_dup(s, len + 1) : NULL;
 }
 
     return len ? p_dup(s, len + 1) : NULL;
 }
 
+static inline char *m_substrdup(const char *s, const char *end) {
+    return p_dupstr(s, end ? end - s : m_strlen(s));
+}
+
 static inline char *m_strreplace(char **p, const char *s) {
     p_delete(p);
     return (*p = m_strdup(s));
 static inline char *m_strreplace(char **p, const char *s) {
     p_delete(p);
     return (*p = m_strdup(s));
@@ -123,6 +130,18 @@ m_strncat(char *dst, ssize_t n, const char *src, ssize_t l) {
 /* parsing related                                                          */
 /****************************************************************************/
 
 /* parsing related                                                          */
 /****************************************************************************/
 
+static inline const char *m_strchrnul(const char *s, int c) {
+    while (*s && *s != c)
+        s++;
+    return s;
+}
+
+static inline const char *m_strnextsp(const char *s) {
+    while (*s && !isspace((unsigned char)*s))
+        s++;
+    return s;
+}
+
 static inline const char *skipspaces(const char *s) {
     while (*s && isspace((unsigned char)*s))
         s++;
 static inline const char *skipspaces(const char *s) {
     while (*s && isspace((unsigned char)*s))
         s++;
@@ -132,4 +151,18 @@ static inline char *vskipspaces(const char *s) {
     return (char *)skipspaces(s);
 }
 
     return (char *)skipspaces(s);
 }
 
+char *m_strrtrim(char *s);
+
+/****************************************************************************/
+/* search                                                                   */
+/****************************************************************************/
+
+const char *
+m_stristrn(const char *haystack, const char *needle, ssize_t nlen);
+
+static inline const char *
+m_stristr(const char *haystack, const char *needle) {
+    return m_stristrn(haystack, needle, m_strlen(needle));
+}
+
 #endif /* MUTT_LIB_LIB_STR_H */
 #endif /* MUTT_LIB_LIB_STR_H */