Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef SOFIA_SIP_SU_STRING_H
00026
00027 #define SOFIA_SIP_SU_STRING_H
00028
00047 #ifndef SU_CONFIG_H
00048 #include <sofia-sip/su_config.h>
00049 #endif
00050
00051 #include <string.h>
00052
00053 SOFIA_BEGIN_DECLS
00054
00055 su_inline int su_strcmp(char const *a, char const *b)
00056 {
00057 return strcmp(a ? a : "", b ? b : "");
00058 }
00059
00060 su_inline int su_strncmp(char const *a, char const *b, size_t n)
00061 {
00062 return strncmp(a ? a : "", b ? b : "", n);
00063 }
00064
00065 SOFIAPUBFUN char *su_strcasestr(const char *haystack, const char *needle);
00066
00067 SOFIAPUBFUN int su_strcasecmp(char const *s1, char const *s2);
00068 SOFIAPUBFUN int su_strncasecmp(char const *s1, char const *s2, size_t n);
00069
00070 SOFIAPUBFUN int su_strmatch(char const *str, char const *with);
00071 SOFIAPUBFUN int su_strnmatch(char const *str, char const *with, size_t n);
00072
00073 SOFIAPUBFUN int su_casematch(char const *s1, char const *with);
00074 SOFIAPUBFUN int su_casenmatch(char const *s1, char const *with, size_t n);
00075
00076 SOFIAPUBFUN size_t su_strnspn(char const *s, size_t size, char const *term);
00077 SOFIAPUBFUN size_t su_strncspn(char const *s, size_t ssize, char const *reject);
00078
00079 SOFIAPUBFUN size_t su_memspn(const void *mem, size_t memlen,
00080 const void *accept, size_t acceptlen);
00081 SOFIAPUBFUN size_t su_memcspn(const void *mem, size_t memlen,
00082 const void *reject, size_t rejectlen);
00083
00084 SOFIA_END_DECLS
00085
00086 #endif