1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-29 16:31:18 +01:00
José Roberto de Souza 237e3f4dcb sys/posix: fix strncasecmp
This should be a OR or when comparing only parts os strings would
return a wrong value.

const char *first = "testA";
const char *second = "test";
uint8_t contains = strncasecmp(first, second, strlen(second));
2015-02-23 11:24:01 -03:00
..
2014-09-17 19:54:40 +02:00
2014-09-12 11:50:12 +02:00
2014-10-31 01:24:30 +01:00
2015-02-08 18:52:16 +01:00
2014-12-03 20:18:37 +01:00
2015-02-23 11:24:01 -03:00
2014-10-30 20:16:48 +01:00
2014-08-07 16:31:27 +02:00
2014-12-03 20:42:51 +01:00
2014-08-23 16:16:26 +02:00
2015-02-20 20:20:47 +01:00