Searched refs:ns2 (Results 1 – 4 of 4) sorted by relevance
71 size_t ns2 = wcslen (s2) + 1; in stupid_wcscmp() local72 size_t n = ns1 < ns2 ? ns1 : ns2; in stupid_wcscmp()120 size_t ns2 = strlen (s2) + 1; in stupid_strcmp() local121 size_t n = ns1 < ns2 ? ns1 : ns2; in stupid_strcmp()
48 size_t ns1 = strlen (s1) + 1, ns2 = strlen (s2) + 1; in stupid_strcasecmp() local49 size_t n = ns1 < ns2 ? ns1 : ns2; in stupid_strcasecmp()
64 size_t ns1 = wcsnlen (s1, n) + 1, ns2 = wcsnlen (s2, n) + 1; in stupid_wcsncmp() local67 n = ns2 < n ? ns2 : n; in stupid_wcsncmp()107 size_t ns1 = strnlen (s1, n) + 1, ns2 = strnlen (s2, n) + 1; in stupid_strncmp() local111 n = ns2 < n ? ns2 : n; in stupid_strncmp()
56 size_t ns2 = strlen (s2) + 1; in stupid_strncasecmp() local57 size_t n = ns1 < ns2 ? ns1 : ns2; in stupid_strncasecmp()
Completed in 10 milliseconds