Lines Matching +defs:strcasecmp +defs:c
3 * Copyright (c) 2005-2009, Jouni Malinen <j@w1.fi>
308 * os_*.c implementation is needed for them. This avoids extra function calls
315 * If needed, os_*.c file can be used to implement the functions that are not
318 * these functions need to be implemented in os_*.c file for the target system.
376 * @c: Constant byte
377 * @n: Number of bytes started from s to fill with c
380 void * os_memset(void *s, int c, size_t n);
432 * @c: Character to search for
435 char * os_strchr(const char *s, int c);
440 * @c: Character to search for
443 char * os_strrchr(const char *s, int c);
529 #define os_memset(s, c, n) memset(s, c, n)
542 #define os_strcasecmp(s1, s2) strcasecmp((s1), (s2))
553 #define os_strchr(s, c) strchr((s), (c))
562 #define os_strrchr(s, c) strrchr((s), (c))
670 #define strcasecmp OS_DO_NOT_USE_strcasecmp