JabberWerxC  2015.1.1
str.h
Go to the documentation of this file.
1 
13 #ifndef JABBERWERX_UTIL_STR_H
14 #define JABBERWERX_UTIL_STR_H
15 
16 #include "../basics.h"
17 
18 
19 #ifdef __cplusplus
20 extern "C"
21 {
22 #endif
23 
32 JABBERWERX_API int jw_atoi(const char *a, int def);
33 
41 JABBERWERX_API size_t jw_strlen(const char *a);
42 
51 JABBERWERX_API size_t jw_strnlen(const char *a, size_t len);
52 
64 JABBERWERX_API int jw_strcmp(const char *a, const char *b);
65 
77 JABBERWERX_API int jw_strcasecmp(const char *a, const char *b);
78 
91 JABBERWERX_API int jw_strncmp(const char *a, const char *b, size_t n);
92 
105 JABBERWERX_API int jw_strncasecmp(const char *a, const char *b, size_t n);
106 
107 #ifdef __cplusplus
108 }
109 #endif
110 
111 #endif /* JABBERWERX_UTIL_STR_H */
#define JABBERWERX_API
Definition: basics.h:32
JABBERWERX_API int jw_strcasecmp(const char *a, const char *b)
JABBERWERX_API int jw_strncmp(const char *a, const char *b, size_t n)
JABBERWERX_API int jw_strncasecmp(const char *a, const char *b, size_t n)
JABBERWERX_API size_t jw_strlen(const char *a)
JABBERWERX_API size_t jw_strnlen(const char *a, size_t len)
JABBERWERX_API int jw_strcmp(const char *a, const char *b)
JABBERWERX_API int jw_atoi(const char *a, int def)