| /src/external/bsd/openpam/dist/lib/libpam/ |
| openpam_strlcmp.h | 38 strlcmp(const char *s1, const char *s2, size_t len) 41 for (; len && *s1 && *s2; --len, ++s1, ++s2) 42 if (*s1 != *s2) 43 return ((unsigned char)*s1 - (unsigned char)*s2);
|
| /src/bin/sh/ |
| mystring.h | 45 #define equal(s1, s2) (strcmp(s1, s2) == 0) 46 #define scopy(s1, s2) ((void)strcpy(s2, s1))
|
| /src/lib/libc/string/ |
| Lint_strcmp.c | 12 strcmp(const char *s1, const char *s2)
|
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| fstrcmp.h | 23 /* Fuzzy compare of S1 and S2. Return a measure for the similarity of S1 25 extern double fstrcmp (const char *s1, const char *s2);
|
| c-strcase.h | 39 /* Compare strings S1 and S2, ignoring case, returning less than, equal to or 41 than S2. */ 42 extern int c_strcasecmp (const char *s1, const char *s2); 44 /* Compare no more than N characters of strings S1 and S2, ignoring case, 46 lexicographically less than, equal to or greater than S2. */ 47 extern int c_strncasecmp (const char *s1, const char *s2, size_t n);
|
| /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
| fstrcmp.h | 23 /* Fuzzy compare of S1 and S2. Return a measure for the similarity of S1 25 extern double fstrcmp (const char *s1, const char *s2);
|
| c-strcase.h | 39 /* Compare strings S1 and S2, ignoring case, returning less than, equal to or 41 than S2. */ 42 extern int c_strcasecmp (const char *s1, const char *s2); 44 /* Compare no more than N characters of strings S1 and S2, ignoring case, 46 lexicographically less than, equal to or greater than S2. */ 47 extern int c_strncasecmp (const char *s1, const char *s2, size_t n);
|
| /src/external/gpl2/gettext/dist/gnulib-local/lib/ |
| fstrcmp.h | 23 /* Fuzzy compare of S1 and S2. Return a measure for the similarity of S1 25 extern double fstrcmp (const char *s1, const char *s2);
|
| /src/external/bsd/ntp/dist/sntp/libpkgver/ |
| colcomp.c | 39 colcomp (s1, s2) 41 register char *s2; 45 while (*s1 && *s2) 48 && MyIsDigit(*s2)) 50 hilo = (*s1 < *s2) ? -1 : (*s1 > *s2) ? 1 : 0; 52 ++s2; 54 && MyIsDigit(*s2)) 57 hilo = (*s1 < *s2) ? -1 : (*s1 > *s2) ? 1 : 0 [all...] |
| /src/external/gpl3/binutils/dist/libiberty/ |
| memcmp.c | 26 register const unsigned char *s2 = (const unsigned char*)str2; local 30 if (*s1++ != *s2++) 31 return s1[-1] < s2[-1] ? -1 : 1;
|
| bcmp.c | 23 bcmp (const void *s1, const void *s2, size_t count) 25 return memcmp (s1, s2, count);
|
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| memcmp.c | 26 register const unsigned char *s2 = (const unsigned char*)str2; local 30 if (*s1++ != *s2++) 31 return s1[-1] < s2[-1] ? -1 : 1;
|
| bcmp.c | 23 bcmp (const void *s1, const void *s2, size_t count) 25 return memcmp (s1, s2, count);
|
| /src/external/gpl3/gcc/dist/libgcc/ |
| memcmp.c | 8 const unsigned char *s2 = str2; local 12 if (*s1++ != *s2++) 13 return s1[-1] < s2[-1] ? -1 : 1;
|
| /src/external/gpl3/gcc/dist/libiberty/ |
| memcmp.c | 26 register const unsigned char *s2 = (const unsigned char*)str2; local 30 if (*s1++ != *s2++) 31 return s1[-1] < s2[-1] ? -1 : 1;
|
| bcmp.c | 23 bcmp (const void *s1, const void *s2, size_t count) 25 return memcmp (s1, s2, count);
|
| /src/external/gpl3/gcc.old/dist/libgcc/ |
| memcmp.c | 8 const unsigned char *s2 = str2; local 12 if (*s1++ != *s2++) 13 return s1[-1] < s2[-1] ? -1 : 1;
|
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| memcmp.c | 26 register const unsigned char *s2 = (const unsigned char*)str2; local 30 if (*s1++ != *s2++) 31 return s1[-1] < s2[-1] ? -1 : 1;
|
| bcmp.c | 23 bcmp (const void *s1, const void *s2, size_t count) 25 return memcmp (s1, s2, count);
|
| /src/external/gpl3/gdb/dist/libiberty/ |
| memcmp.c | 26 register const unsigned char *s2 = (const unsigned char*)str2; local 30 if (*s1++ != *s2++) 31 return s1[-1] < s2[-1] ? -1 : 1;
|
| bcmp.c | 23 bcmp (const void *s1, const void *s2, size_t count) 25 return memcmp (s1, s2, count);
|
| /src/external/gpl3/gdb.old/dist/libiberty/ |
| memcmp.c | 26 register const unsigned char *s2 = (const unsigned char*)str2; local 30 if (*s1++ != *s2++) 31 return s1[-1] < s2[-1] ? -1 : 1;
|
| /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/ |
| c-strcase.h | 39 /* Compare strings S1 and S2, ignoring case, returning less than, equal to or 41 than S2. */ 42 extern int c_strcasecmp (const char *s1, const char *s2); 44 /* Compare no more than N characters of strings S1 and S2, ignoring case, 46 lexicographically less than, equal to or greater than S2. */ 47 extern int c_strncasecmp (const char *s1, const char *s2, size_t n);
|
| /src/external/gpl2/texinfo/dist/lib/ |
| strcase.h | 25 /* Compare strings S1 and S2, ignoring case, returning less than, equal to or 27 than S2. 29 extern int strcasecmp (const char *s1, const char *s2); 31 /* Compare no more than N characters of strings S1 and S2, ignoring case, 33 lexicographically less than, equal to or greater than S2. 35 extern int strncasecmp (const char *s1, const char *s2, size_t n);
|
| /src/external/gpl2/xcvs/dist/lib/ |
| strcase.h | 29 /* Compare strings S1 and S2, ignoring case, returning less than, equal to or 31 than S2. 34 extern int strcasecmp (const char *s1, const char *s2); 36 /* Compare no more than N characters of strings S1 and S2, ignoring case, 38 lexicographically less than, equal to or greater than S2. 40 extern int strncasecmp (const char *s1, const char *s2, size_t n);
|