Searched refs:strncasecmp (Results 1 - 25 of 254) sorted by relevance

1234567891011

/freebsd-11-stable/contrib/diff/lib/
H A Dstrcase.h33 extern int strncasecmp (const char *s1, const char *s2, size_t n);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dstrncasecmp.c15 @deftypefn Supplemental int strncasecmp (const char *@var{s1}, const char *@var{s2})
71 strncasecmp(const char *s1, const char *s2, register size_t n) function
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dstrncasecmp.c15 @deftypefn Supplemental int strncasecmp (const char *@var{s1}, const char *@var{s2})
71 strncasecmp(const char *s1, const char *s2, register size_t n) function
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dstrncasecmp.c43 strncasecmp(const char *s1, const char *s2, size_t n) function
/freebsd-11-stable/contrib/mdocml/
H A Dcompat_strcasestr.c67 } while (strncasecmp(s, find, len) != 0);
H A Dpreconv.c151 strncasecmp(ln, "coding:", 7)) {
169 if (phsz > 4 && !strncasecmp(ln, "utf-8", 5))
171 if (phsz > 10 && !strncasecmp(ln, "iso-latin-1", 11))
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dstrcasestr.c62 } while (strncasecmp(s, find, len) != 0);
H A Dstrptime.c176 if (strncasecmp(_ctloc(day[i]), bp, len) == 0)
181 if (strncasecmp(_ctloc(abday[i]), bp, len) == 0)
200 if (strncasecmp(_ctloc(mon[i]), bp, len) == 0)
205 if (strncasecmp(_ctloc(abmon[i]), bp, len) == 0)
276 if (strncasecmp(_ctloc(am_pm[0]), bp, len) == 0) {
287 if (strncasecmp(_ctloc(am_pm[1]), bp, len) == 0) {
/freebsd-11-stable/sbin/sconfig/
H A Dsconfig.c746 } else if (strncasecmp ("cfg=", argv[i], 4) == 0) {
747 if (strncasecmp ("a", argv[i]+4, 1) == 0)
749 else if (strncasecmp ("b", argv[i]+4, 1) == 0)
751 else if (strncasecmp ("c", argv[i]+4, 1) == 0)
753 else if (strncasecmp ("d", argv[i]+4, 1) == 0)
792 } else if (strncasecmp ("keepalive=", argv[i], 10) == 0) {
803 } else if (strncasecmp ("debug=", argv[i], 6) == 0) {
816 } else if (strncasecmp ("loop=", argv[i], 5) == 0) {
819 } else if (strncasecmp ("rloop=", argv[i], 6) == 0) {
822 } else if (strncasecmp ("dpl
[all...]
/freebsd-11-stable/include/
H A Dstrings.h64 int strncasecmp(const char *, const char *, size_t) __pure;
/freebsd-11-stable/contrib/groff/src/include/
H A Dlib.h117 extern "C" { int strncasecmp(const char *, const char *, int); }
120 extern "C" { int strncasecmp(const char *, const char *, size_t); }
/freebsd-11-stable/contrib/gcclibs/libgomp/
H A Denv.c62 if (strncasecmp (env, "static", 6) == 0)
67 else if (strncasecmp (env, "dynamic", 7) == 0)
72 else if (strncasecmp (env, "guided", 6) == 0)
164 if (strncasecmp (env, "true", 4) == 0)
169 else if (strncasecmp (env, "false", 5) == 0)
/freebsd-11-stable/contrib/ipfilter/lib/
H A Dipft_hx.c116 if (!strncasecmp(s, "mcast", 5)) {
120 if (!strncasecmp(s, "bcast", 5)) {
124 if (!strncasecmp(s, "mbcast", 6)) {
H A Dportname.c27 sv = strncasecmp(buf, sv->s_name, strlen(buf)) ?
/freebsd-11-stable/contrib/groff/src/libs/libgroff/
H A Dstrcasecmp.c23 # define STRXCASECMP_FUNCTION strncasecmp
/freebsd-11-stable/contrib/tcp_wrappers/
H A Dstrcasecmp.c82 strncasecmp(s1, s2, n) function
/freebsd-11-stable/crypto/heimdal/lib/wind/
H A Dtest-punycode.c74 if (strncasecmp(buf, e->pc, len) != 0) {
/freebsd-11-stable/sys/libkern/
H A Dstrcasecmp.c55 strncasecmp(const char *s1, const char *s2, size_t n) function
/freebsd-11-stable/crypto/openssl/crypto/
H A Do_str.c90 * Recursion hazard warning! Whenever strncasecmp is #defined as
94 return strncasecmp(str1, str2, n);
/freebsd-11-stable/sbin/iscontrol/
H A Dmisc.c92 if(strncasecmp("0x", src, 2) == 0) {
109 if(strncasecmp("0b", src , 2) == 0) {
166 if(strncasecmp(encoding, "0x", 2) == 0) {
182 if(strncasecmp(encoding, "0b", 2) == 0) {
/freebsd-11-stable/stand/libsa/
H A Dstrcasecmp.c56 strncasecmp(s1, s2, n) function
/freebsd-11-stable/lib/libc/nameser/
H A Dns_samedomain.c103 return (strncasecmp(a, b, lb) == 0);
143 return (strncasecmp(cp, b, lb) == 0);
/freebsd-11-stable/sbin/camcontrol/
H A Dutil.c175 if (strncasecmp(str, "yes", 3) == 0)
177 else if (strncasecmp(str, "no", 2) == 0)
/freebsd-11-stable/contrib/apr/include/
H A Dapr_general.h124 #define strncasecmp(s1, s2, n) strnicmp(s1, s2, n) macro
126 int strncasecmp(const char *a, const char *b, size_t n);
/freebsd-11-stable/contrib/libucl/src/
H A Ducl_internal.h344 if ((p[0] == 'f' || p[0] == 'F') && strncasecmp (p, "false", 5) == 0) {
350 if ((p[0] == 't' || p[0] == 'T') && strncasecmp (p, "true", 4) == 0) {
356 if ((p[0] == 'y' || p[0] == 'Y') && strncasecmp (p, "yes", 3) == 0) {
360 else if ((p[0] == 'o' || p[0] == 'O') && strncasecmp (p, "off", 3) == 0) {
366 if ((p[0] == 'n' || p[0] == 'N') && strncasecmp (p, "no", 2) == 0) {
370 else if ((p[0] == 'o' || p[0] == 'O') && strncasecmp (p, "on", 2) == 0) {

Completed in 237 milliseconds

1234567891011