libcfe  0.12.1
some useful C-functions
xstrcoll.h
Go to the documentation of this file.
1 #ifndef XSTRCOLL_H
2 #define XSTRCOLL_H
3 
4 #include <sys/types.h>
5 
18 int xstrcoll(const char *a, size_t alen, const char *b, size_t blen);
19 
32 int str_compare(void *a, void *b);
33 
34 #define stringcompare(a, alen, b, blen) xstrcoll((const char *)a, alen, (const char *)b, blen)
35 
36 #endif /* XSTRCOLL_H */
#define a
int str_compare(void *a, void *b)
Definition: xstrcoll.c:22
int xstrcoll(const char *a, size_t alen, const char *b, size_t blen)
Definition: xstrcoll.c:27