Searched refs:ns1 (Results 1 – 4 of 4) sorted by relevance
70 size_t ns1 = wcslen (s1) + 1; in stupid_wcscmp() local72 size_t n = ns1 < ns2 ? ns1 : ns2; in stupid_wcscmp()119 size_t ns1 = strlen (s1) + 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() local66 n = ns1 < n ? ns1 : n; in stupid_wcsncmp()107 size_t ns1 = strnlen (s1, n) + 1, ns2 = strnlen (s2, n) + 1; in stupid_strncmp() local110 n = ns1 < n ? ns1 : n; in stupid_strncmp()
55 size_t ns1 = strlen (s1) + 1; in stupid_strncasecmp() local57 size_t n = ns1 < ns2 ? ns1 : ns2; in stupid_strncasecmp()
Completed in 10 milliseconds