OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:strcasecmp_l
(Results
1 - 5
of
5
) sorted by null
/device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/xlocale/
_strings.h
46
int
strcasecmp_l
(const char *, const char *, locale_t);
/bionic/libc/bionic/
strings_l.cpp
32
int
strcasecmp_l
(const char* s1, const char* s2, locale_t) {
function
/bionic/tests/headers/posix/
strings_h.c
36
FUNCTION(
strcasecmp_l
, int (*f)(const char*, const char*, locale_t));
/bionic/tests/
strings_test.cpp
47
TEST(STRINGS_TEST,
strcasecmp_l
) {
49
ASSERT_EQ(0,
strcasecmp_l
("hello", "HELLO", l));
50
ASSERT_LT(
strcasecmp_l
("hello1", "hello2", l), 0);
51
ASSERT_GT(
strcasecmp_l
("hello2", "hello1", l), 0);
/bionic/libc/include/bits/
strcasecmp.h
54
int
strcasecmp_l
(const char* __s1, const char* __s2, locale_t __l) __attribute_pure__ __INTRODUCED_IN(23);
Completed in 165 milliseconds