📄 string0.h
字号:
/* * This file is part of the Sofia-SIP package * * Copyright (C) 2005 Nokia Corporation. * * Contact: Pekka Pessi <pekka.pessi@nokia.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA * */#ifndef STRING0_H/** Defined when <sofia-sip/string0.h> is included. */#define STRING0_H/**@file sofia-sip/string0.h * * @brief String comparison functions accepting NULL pointers * * This module contains string comparison functions that can be called * with NULL pointer as argument. * */#ifndef SU_CONFIG_H#include <sofia-sip/su_config.h>#endif#include <string.h>SOFIA_BEGIN_DECLS#if SU_HAVE_INLINEsu_inline#elseSOFIAPUBFUN#endifint str0cmp(char const *a, char const *b), str0ncmp(char const *a, char const *b, size_t n), str0casecmp(char const *a, char const *b), str0ncasecmp(char const *a, char const *b, size_t n);#if SU_HAVE_INLINEsu_inline#elseSOFIAPUBFUN#endifsize_tstrnspn(char const *s, size_t size, char const *term), strncspn(char const *s, size_t ssize, char const *reject);#if SU_HAVE_INLINEint str0cmp(char const *a, char const *b){ if (a == NULL) a = ""; if (b == NULL) b = ""; return strcmp(a, b);}int str0ncmp(char const *a, char const *b, size_t n){ if (a == NULL) a = ""; if (b == NULL) b = ""; return strncmp(a, b, n);}int str0casecmp(char const *a, char const *b){ if (a == NULL) a = ""; if (b == NULL) b = ""; return strcasecmp(a, b);}int str0ncasecmp(char const *a, char const *b, size_t n){ if (a == NULL) a = ""; if (b == NULL) b = ""; return strncasecmp(a, b, n);}size_t strnspn(char const *s, size_t ssize, char const *term){ size_t n; size_t tsize = strlen(term); if (tsize == 0) { return 0; } else if (tsize == 1) { char c, t = term[0]; for (n = 0; n < ssize && (c = s[n]) && c == t; n++) ; } else if (tsize == 2) { char c, t1 = term[0], t2 = term[1]; for (n = 0; n < ssize && (c = s[n]) && (c == t1 || c == t2); n++) ; } else { size_t i; char c, t1 = term[0], t2 = term[1]; for (n = 0; n < ssize && (c = s[n]) && (c == t1 || c == t2); n++) { for (i = 2; i < tsize; i++) if (c == term[i]) return n; } } return n;}size_t strncspn(char const *s, size_t ssize, char const *reject){ size_t n; size_t rsize = strlen(reject); if (rsize == 0) { for (n = 0; n < ssize && s[n]; n++) ; } else if (rsize == 1) { char c, rej = reject[0]; for (n = 0; n < ssize && (c = s[n]) && c != rej; n++) ; } else if (rsize == 2) { char c, rej1 = reject[0], rej2 = reject[1]; for (n = 0; n < ssize && (c = s[n]) && c != rej1 && c != rej2; n++) ; } else { size_t i; char c, rej1 = reject[0], rej2 = reject[1]; for (n = 0; n < ssize && (c = s[n]) && c != rej1 && c != rej2; n++) { for (i = 2; i < rsize; i++) if (c == reject[i]) return n; } } return n;}#endifSOFIA_END_DECLS#endif /* !STRING0_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -