Searched refs:strcasecmp (Results 1 - 25 of 30) sorted by relevance

12

/ast/src/lib/libast/comp/
H A Dstrcasecmp.c28 NoN(strcasecmp)
34 #undef strcasecmp
37 strcasecmp(register const char* a, register const char* b)
H A Diconv.c183 if (!strcasecmp(name, "utf") || !strcasecmp(name, "utf8") || !strcasecmp(name, "utf-8"))
185 if (!strcasecmp(name, "ucs") || !strcasecmp(name, "ucs2") || !strcasecmp(name, "ucs-2"))
1060 if (!t || !*t || *t == '-' && !*(t + 1) || !strcasecmp(t, name_local) || !strcasecmp(t, name_native))
1062 if (!f || !*f || *f == '-' && !*(f + 1) || !strcasecmp(t, name_local) || !strcasecmp(
[all...]
/ast/src/cmd/mailx/
H A Dspam.c81 #define strcasecmp(s,p) (!strgrpmatch(s,p,NiL,0,STR_ICASE|STR_MAXIMAL|STR_LEFT|STR_RIGHT)) macro
203 if (!strcasecmp(ap, bp))
265 if (!strcasecmp(ap, bp))
269 if (!strcasecmp(ad, bp))
274 if (!strcasecmp(ad, bp))
404 if (!strcasecmp(++td, bp))
407 else if (!strcasecmp(ap, bp))
412 if (to && !strcasecmp(ap, state.var.user))
419 if (!strcasecmp(ap, bp) || strchr(ap, '!'))
541 if (!strcasecmp(
[all...]
H A Dmisc.c304 if (!strcasecmp(lp, host)) {
309 if (hx && !strcasecmp(lp, hx + 1)) {
H A Dsend.c218 if (!strcasecmp(pp.name, "date"))
220 else if (!strcasecmp(pp.name, "from"))
H A Dvars.c569 if (!strcasecmp(ap->head, "received"))
731 return strcasecmp(a, b);
H A Dcmd1.c766 if (!(kp = (struct mark*)strsearch(marks, elementsof(marks), sizeof(*marks), strcasecmp, mark, NiL))) {
H A Dlist.c120 return !strcasecmp(name, s);
/ast/src/lib/libast/uwin/
H A Drlib.h79 extern int strcasecmp(const char*, const char*);
/ast/src/lib/libast/path/
H A Dpathexists.c66 cmp = strchr(astconf("PATH_ATTRIBUTES", path, NiL), 'c') ? strcasecmp : strcmp;
/ast/src/cmd/std/
H A Dpss-cygwin.c145 if ((i = strlen(s)) > 4 && !strcasecmp(s + i - 4, ".exe"))
156 if ((i = strlen(s)) > 4 && !strcasecmp(s + i - 4, ".exe"))
H A Dmount.c204 return strcasecmp((char*)k1, (char*)k2);
464 cmp = (Cmp_f)strcasecmp;
/ast/src/lib/libardir/
H A Dardir.c179 if (!strcasecmp(name, meth->name))
/ast/src/cmd/mailx/port/
H A Dmime.c151 return strcasecmp(a, b);
287 if (!strcasecmp(k, "test"))
589 if (!view || strcasecmp(view, "test"))
610 if (a1.name.size == 6 && strneq(a1.name.data, "strcmp", 6) || a1.name.size == 10 && strneq(a1.name.data, "strcasecmp", 10))
671 while (strcasecmp(view, att->name))
/ast/src/lib/libast/misc/
H A Dmime.c99 return strcasecmp(a, b);
235 if (!strcasecmp(k, "test"))
645 if (!view || strcasecmp(view, "test"))
666 if (a1.name.size == 6 && strneq(a1.name.data, "strcmp", 6) || a1.name.size == 10 && strneq(a1.name.data, "strcasecmp", 10))
727 while (strcasecmp(view, att->name))
H A Dfastfind.c546 strsort(fp->dirs, q, strcasecmp);
827 if (!(n = strcasecmp(*fp->dirs, fp->decode.path)) && (ignorecase || !strcmp(*fp->dirs, fp->decode.path)))
/ast/src/lib/libdss/
H A Dtag.c506 if (*s && strcasecmp(s, fp->tag->name))
524 if (!strcasecmp(s, tp->name))
529 if (!strcasecmp(s, tp->name))
589 if (!strcasecmp(t, vp->name))
H A Dcxmap.c43 return strcasecmp((char*)a, (char*)b);
/ast/src/cmd/ksh93/bltins/
H A Denum.c152 n = strcasecmp(v,val);
/ast/src/cmd/builtin/
H A Dwho.c151 #define skip(ut) (!*ut.ut_user||!*ut.ut_line||dead(ut)|!strcasecmp(ut.ut_user,"login"))
/ast/src/cmd/html/
H A Dhtml2rtf.c88 if (!strcasecmp(ap->name, name))
603 if (!strcasecmp(s, "CENTER"))
605 else if (!strcasecmp(s, "LEFT"))
607 else if (!strcasecmp(s, "RIGHT"))
1510 if (!(state.tags = hashalloc(NiL, HASH_compare, strcasecmp, HASH_hash, strcasehash, HASH_name, "tags", 0)))
/ast/src/lib/libast/port/
H A Dlc.c452 if (!strcasecmp(t, lc->code) || !strcasecmp(t, lc->name))
/ast/src/cmd/paxlib/calib/
H A Dcalib.c932 if (!(pax->test & 0x01000) && (!strcasecmp(s + 1, "COB") || !strcasecmp(s + 1, "CPY")))
/ast/src/lib/libuu/
H A Duulib.c1301 if (*mp->name == c && (!strcasecmp(name, mp->name) || vl && !strncasecmp(name, mp->name, vl)) ||
1302 mp->alias && *mp->alias == c && (!strcasecmp(name, mp->alias) || vl && !strncasecmp(name, mp->alias, vl)))
/ast/src/cmd/tw/
H A Dtw.c639 v = icase ? strcasecmp(f1->name, f2->name) : strcoll(f1->name, f2->name);

Completed in 44 milliseconds

12