Searched refs:strcspn (Results 1 - 25 of 44) sorted by relevance

12

/haiku-fatelf/src/bin/coreutils/lib/
H A Dstrcspn.c25 #undef strcspn macro
30 strcspn (const char *s, const char *reject) function
H A Dstring.h290 /* strcspn() assumes the second argument is a list of single-byte characters.
294 # undef strcspn macro
295 # define strcspn(s,a) \ macro
296 (GL_LINK_WARNING ("strcspn cannot work correctly on character strings " \
299 strcspn (s, a))
585 Unlike strcspn(), this function works correctly in multibyte locales. */
H A Dstring.in.h251 /* strcspn() assumes the second argument is a list of single-byte characters.
255 # undef strcspn macro
256 # define strcspn(s,a) \ macro
257 (GL_LINK_WARNING ("strcspn cannot work correctly on character strings " \
260 strcspn (s, a))
546 Unlike strcspn(), this function works correctly in multibyte locales. */
H A Dexclude.c122 size_t n = strcspn (str, cset);
/haiku-fatelf/src/system/libroot/posix/string/
H A Dstrcspn.c45 strcspn(const char *s1, const char *s2) function
/haiku-fatelf/src/apps/poorman/libhttpd/
H A Dmatch.c75 i = strcspn( string, "/" );
/haiku-fatelf/src/tests/kits/opengl/glinfo/
H A DExtensionsView.cpp82 int n = strcspn(stringList, " ");
/haiku-fatelf/src/bin/gdb/libiberty/testsuite/
H A Dtest-demangle.c187 p += strcspn (p, " \t=");
197 p += strcspn (p, " \t");
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dstring.h206 /* strcspn() assumes the second argument is a list of single-byte characters.
210 # undef strcspn macro
211 # define strcspn(s,a) \ macro
212 (GL_LINK_WARNING ("strcspn cannot work correctly on character strings " \
215 strcspn (s, a))
468 Unlike strcspn(), this function works correctly in multibyte locales. */
H A Dstring.in.h177 /* strcspn() assumes the second argument is a list of single-byte characters.
181 # undef strcspn macro
182 # define strcspn(s,a) \ macro
183 (GL_LINK_WARNING ("strcspn cannot work correctly on character strings " \
186 strcspn (s, a))
439 Unlike strcspn(), this function works correctly in multibyte locales. */
/haiku-fatelf/src/bin/network/wget/lib/
H A Dstring.in.h238 /* strcspn() assumes the second argument is a list of single-byte characters.
242 # undef strcspn macro
243 # define strcspn(s,a) \ macro
244 (GL_LINK_WARNING ("strcspn cannot work correctly on character strings " \
247 strcspn (s, a))
514 Unlike strcspn(), this function works correctly in multibyte locales. */
/haiku-fatelf/src/kits/network/libbind/irs/
H A Dnis_nw.c317 cp += strcspn(cp, spaces);
325 t = cp + strcspn(cp, spaces);
341 cp += strcspn(cp, spaces);
H A Dnis_sv.c240 p += strcspn(p, spaces);
271 p += strcspn(p, spaces);
/haiku-fatelf/headers/posix/
H A Dstring.h51 extern size_t strcspn(const char *string, const char *set);
/haiku-fatelf/src/bin/gzip/
H A Dutil.c222 /* Provide missing strspn and strcspn functions. */
229 int strcspn OF((const char *s, const char *reject));
257 int strcspn(s, reject) function
300 p += strcspn(p, SEPARATOR); /* find end of word */
/haiku-fatelf/src/libs/util/
H A Dlogin_cap.c113 int count = strcspn(cptr, chars);
127 int count = strcspn(ptr, chars);
403 count = strcspn(ptr, ", \t");
H A Dlogin_class.c162 while (*(p += strcspn(p, "~$")) != '\0') {
/haiku-fatelf/src/tools/fs_shell/
H A Dstring.cpp166 return strcspn(string, set);
/haiku-fatelf/src/bin/coreutils/src/
H A Dseq.c149 if (! arg[strcspn (arg, "xX")] && isfinite (ret.value))
157 size_t fraction_len = strcspn (decimal_point + 1, "eE");
/haiku-fatelf/src/bin/less/
H A Dregexp.c191 STATIC int strcspn();
557 len = strcspn(regparse, META);
1221 * The following is provided for those people who do not have strcspn() in
1228 * strcspn - find length of initial segment of s1 consisting entirely
1233 strcspn(s1, s2) function
/haiku-fatelf/src/kits/network/libbind/resolv/
H A Dres_init.c388 cp[strcspn(cp, ";# \t\n")] = '\0';
615 i = MIN(strcspn(cp, " \t"), sizeof(ext->nsuffix) - 1);
623 i = MIN(strcspn(cp, " \t"), sizeof(ext->nsuffix2) - 1);
/haiku-fatelf/src/system/libroot/posix/glibc/include/arch/x86/bits/
H A Dstring.h651 strcspn (__const char *__s, __const char *__reject) function
681 strcspn (__const char *__s, __const char *__reject) function
/haiku-fatelf/src/bin/gdb/gdb/cli/
H A Dcli-dump.c63 end = (*cmd) + strcspn (*cmd, " \t");
107 end = *cmd + strcspn (*cmd, " \t");
/haiku-fatelf/src/apps/mail/
H A DWIndex.cpp396 return strcspn(entryData, "\n\r");
/haiku-fatelf/src/kits/support/
H A DString.cpp1644 if (!setOfBytes || strcspn(fPrivateData, setOfBytes) >= uint32(Length()))
1653 pos = strcspn(fPrivateData + offset, setOfBytes);
1671 || strcspn(fPrivateData, setOfBytes) >= uint32(Length()))
1688 pos = strcspn(fPrivateData + offset, setOfBytes);
2435 pos = strcspn(fPrivateData + offset, setOfCharsToEscape);

Completed in 214 milliseconds

12