s1                103 mtcp/mtcp_util.c int mtcp_strncmp (const char *s1, const char *s2, size_t n)
s1                109 mtcp/mtcp_util.c     c1 = (unsigned char) *s1++;
s1                118 mtcp/mtcp_util.c int mtcp_strcmp (const char *s1, const char *s2)
s1                125 mtcp/mtcp_util.c     c1 = (unsigned char) *s1++;
s1                157 mtcp/mtcp_util.c int mtcp_strstartswith (const char *s1, const char *s2)
s1                159 mtcp/mtcp_util.c   if (mtcp_strlen(s1) >= mtcp_strlen(s2)) {
s1                160 mtcp/mtcp_util.c     return mtcp_strncmp(s1, s2, mtcp_strlen(s2)) == 0;
s1                165 mtcp/mtcp_util.c int mtcp_strendswith (const char *s1, const char *s2)
s1                167 mtcp/mtcp_util.c   size_t len1 = mtcp_strlen(s1);
s1                173 mtcp/mtcp_util.c   s1 += (len1 - len2);
s1                175 mtcp/mtcp_util.c   return mtcp_strncmp(s1, s2, len2) == 0;
s1                134 mtcp/mtcp_util.h mtcp_sys_memcmp (s1, s2, len)
s1                135 mtcp/mtcp_util.h      const __ptr_t s1;
s1                141 mtcp/mtcp_util.h   long int srcp1 = (long int) s1;
s1                174 mtcp/mtcp_util.h size_t mtcp_strlen (const char *s1);
s1                179 mtcp/mtcp_util.h int mtcp_strncmp (const char *s1, const char *s2, size_t n);
s1                180 mtcp/mtcp_util.h int mtcp_strcmp (const char *s1, const char *s2);
s1                182 mtcp/mtcp_util.h int mtcp_strstartswith (const char *s1, const char *s2);
s1                183 mtcp/mtcp_util.h int mtcp_strendswith (const char *s1, const char *s2);