Go to the documentation of this file.
25 #ifndef SOFIA_SIP_SU_STRING_H
27 #define SOFIA_SIP_SU_STRING_H
55 su_inline int su_strcmp(
char const *a,
char const *b);
56 su_inline int su_strncmp(
char const *a,
char const *b,
size_t n);
73 const void *accept,
size_t acceptlen);
75 const void *reject,
size_t rejectlen);
77 su_inline int su_strcmp(
char const *a,
char const *b)
79 return strcmp(a ? a :
"", b ? b :
"");
82 su_inline int su_strncmp(
char const *a,
char const *b,
size_t n)
84 return strncmp(a ? a :
"", b ? b :
"", n);
Sofia-SIP 1.12.11devel -
Copyright (C) 2006 Nokia Corporation. All rights reserved.
Licensed under the terms of the GNU Lesser General Public License.