Searched refs:strpbrk (Results 1 - 25 of 121) sorted by relevance

12345

/freebsd-11-stable/contrib/netbsd-tests/lib/libc/string/
H A Dt_strpbrk.c38 ATF_TC(strpbrk); variable
39 ATF_TC_HEAD(strpbrk, tc)
41 atf_tc_set_md_var(tc, "descr", "Test strpbrk(3)");
44 ATF_TC_BODY(strpbrk, tc)
48 ATF_CHECK_EQ(strpbrk(s, ""), NULL);
49 ATF_CHECK_EQ(strpbrk(s, "qrst"), NULL);
50 ATF_CHECK_EQ(strpbrk(s, "a"), s);
51 ATF_CHECK_EQ(strpbrk(s, "b"), s + 1);
52 ATF_CHECK_EQ(strpbrk(s, "ab"), s);
53 ATF_CHECK_EQ(strpbrk(
[all...]
/freebsd-11-stable/sys/cddl/compat/opensolaris/sys/
H A Dstring.h34 char *strpbrk(const char *, const char *);
/freebsd-11-stable/lib/libc/string/
H A Dstrpbrk.c31 static char sccsid[] = "@(#)strpbrk.c 8.1 (Berkeley) 6/4/93";
42 strpbrk(const char *s1, const char *s2) function
H A DMakefile.inc18 strpbrk.c strrchr.c strsep.c strsignal.c strspn.c strstr.c strtok.c \
39 string.3 strlcpy.3 strlen.3 strmode.3 strpbrk.3 strsep.3 \
/freebsd-11-stable/contrib/libstdc++/include/c_std/
H A Dstd_cstring.h69 #undef strpbrk macro
110 using ::strpbrk;
113 strpbrk(char* __s1, const char* __s2) function
/freebsd-11-stable/contrib/llvm-project/libcxx/include/
H A Dstring.h40 const char* strpbrk(const char* s1, const char* s2);
41 char* strpbrk( char* s1, const char* s2);
80 char* __libcpp_strpbrk(const char* __s1, const char* __s2) {return (char*)strpbrk(__s1, __s2);}
82 const char* strpbrk(const char* __s1, const char* __s2) {return __libcpp_strpbrk(__s1, __s2);} function
84 char* strpbrk( char* __s1, const char* __s2) {return __libcpp_strpbrk(__s1, __s2);} function
/freebsd-11-stable/lib/libbluetooth/
H A Dbluetooth.c118 if ((cp = strpbrk(p, "#\n")) == NULL)
121 if ((cp = strpbrk(p, " \t")) == NULL)
135 if ((cp = strpbrk(cp, " \t")) != NULL)
144 if ((cp = strpbrk(cp, " \t")) != NULL)
222 if ((cp = strpbrk(p, "#\n")) == NULL)
226 if ((cp = strpbrk(p, " \t")) == NULL)
231 if ((p = strpbrk(cp, " \t")) != NULL)
244 if ((cp = strpbrk(cp, " \t")) != NULL)
/freebsd-11-stable/contrib/libstdc++/include/c_compatibility/
H A Dstring.h49 using std::strpbrk;
/freebsd-11-stable/libexec/mknetid/
H A Dmknetid.c248 if (!(hptr = strpbrk(ptr, "#\n")))
251 if (!(hptr = strpbrk(ptr, " \t")))
257 if (!(hptr = strpbrk(ptr, " \t")))
284 if ((ptr = strpbrk((char*)&readbuf, " \t")) == NULL) {
/freebsd-11-stable/usr.bin/tset/
H A Dwrterm.c66 if (*p != '\0' && strpbrk(p, " \t") == NULL) {
/freebsd-11-stable/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_string.c39 strpbrk(const char *s, const char *b) function
/freebsd-11-stable/lib/libc/net/
H A Dgetnetbyht.c100 cp = strpbrk(p, "#\n");
106 cp = strpbrk(p, " \t");
119 p = strpbrk(cp, " \t");
134 p = strpbrk(cp, " \t");
H A Dgethostbyht.c110 cp = strpbrk(p, "#\n");
113 if (!(cp = strpbrk(p, " \t")))
143 if ((p = strpbrk(cp, " \t")) != NULL)
160 if ((p = strpbrk(cp, " \t")) != NULL)
H A Dgethostbynis.c98 cp = strpbrk(result, " \t");
131 p = strpbrk(cp, " \t");
149 p = strpbrk(cp, " \t");
H A Dgetnetbynis.c87 cp = strpbrk(result, " \t");
107 cp = strpbrk(cp, " \t");
117 p = strpbrk(cp, " \t");
H A Dgetprotoent.c374 cp = strpbrk(p, "#\n");
378 cp = strpbrk(p, " \t");
384 p = strpbrk(cp, " \t");
401 cp = strpbrk(cp, " \t");
/freebsd-11-stable/contrib/ofed/opensm/complib/
H A Dcl_nodenamemap.c200 e = strpbrk(linebuf, "\n");
211 e = strpbrk(p, "\n");
/freebsd-11-stable/contrib/libreadline/
H A Drldefs.h85 # define _rl_strpbrk(a,b) strpbrk((a),(b))
/freebsd-11-stable/libexec/revnetgroup/
H A Drevnetgroup.c131 if ((data = (char *)(strpbrk(readbuf, " \t") + 1)) < (char *)2)
/freebsd-11-stable/contrib/nvi/common/
H A Dmultibyte.h78 #define STRPBRK strpbrk
/freebsd-11-stable/usr.bin/find/
H A Dfind.c218 if (isxargs && strpbrk(entry->fts_path, BADCH)) {
/freebsd-11-stable/tools/tools/bootparttest/
H A Dbootparttest.c118 p = strpbrk(argv[1], "0123456789");
/freebsd-11-stable/include/
H A Dstring.h109 char *strpbrk(const char *, const char *) __pure;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_win_dll_thunk.cpp81 INTERCEPT_LIBRARY_FUNCTION(strpbrk); variable
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlobject.c156 if (strpbrk(s, "nN")) /* reject 'inf' and 'nan' */
158 else if (strpbrk(s, "xX")) /* hexa? */

Completed in 269 milliseconds

12345