su  1.12.11
sofia-sip/string0.h
Go to the documentation of this file.
00001 #ifndef STRING0_H
00002 
00003 #define STRING0_H
00004 
00016 #include <sofia-sip/su_string.h>
00017 
00018 su_inline int str0cmp(char const *a, char const *b)
00019 {
00020   return su_strcmp(a, b);
00021 }
00022 
00023 su_inline int str0ncmp(char const *a, char const *b, size_t n)
00024 {
00025   return su_strncmp(a, b, n);
00026 }
00027 
00028 su_inline int str0casecmp(char const *a, char const *b)
00029 {
00030   return su_strcasecmp(a, b);
00031 }
00032 
00033 su_inline int str0ncasecmp(char const *a, char const *b, size_t n)
00034 {
00035   return su_strncasecmp(a, b, n);
00036 }
00037 
00038 su_inline size_t strnspn(char const *s, size_t ssize, char const *term)
00039 {
00040   return su_strnspn(s, ssize, term);
00041 }
00042 
00043 su_inline size_t strncspn(char const *s, size_t ssize, char const *term)
00044 {
00045   return su_strncspn(s, ssize, term);
00046 }
00047 #endif
 All Data Structures Files Functions Variables Typedefs Enumerator Defines

Sofia-SIP 1.12.11 - Copyright (C) 2006 Nokia Corporation. All rights reserved. Licensed under the terms of the GNU Lesser General Public License.