s2 103 mtcp/mtcp_util.c int mtcp_strncmp (const char *s1, const char *s2, size_t n) s2 110 mtcp/mtcp_util.c c2 = (unsigned char) *s2++; s2 118 mtcp/mtcp_util.c int mtcp_strcmp (const char *s1, const char *s2) s2 120 mtcp/mtcp_util.c size_t n = mtcp_strlen(s2); s2 126 mtcp/mtcp_util.c c2 = (unsigned char) *s2++; s2 157 mtcp/mtcp_util.c int mtcp_strstartswith (const char *s1, const char *s2) s2 159 mtcp/mtcp_util.c if (mtcp_strlen(s1) >= mtcp_strlen(s2)) { s2 160 mtcp/mtcp_util.c return mtcp_strncmp(s1, s2, mtcp_strlen(s2)) == 0; s2 165 mtcp/mtcp_util.c int mtcp_strendswith (const char *s1, const char *s2) s2 168 mtcp/mtcp_util.c size_t len2 = mtcp_strlen(s2); s2 175 mtcp/mtcp_util.c return mtcp_strncmp(s1, s2, len2) == 0; s2 134 mtcp/mtcp_util.h mtcp_sys_memcmp (s1, s2, len) s2 136 mtcp/mtcp_util.h const __ptr_t s2; s2 142 mtcp/mtcp_util.h long int srcp2 = (long int) s2; s2 179 mtcp/mtcp_util.h int mtcp_strncmp (const char *s1, const char *s2, size_t n); s2 180 mtcp/mtcp_util.h int mtcp_strcmp (const char *s1, const char *s2); s2 182 mtcp/mtcp_util.h int mtcp_strstartswith (const char *s1, const char *s2); s2 183 mtcp/mtcp_util.h int mtcp_strendswith (const char *s1, const char *s2);