mirror of
https://github.com/apache/nuttx.git
synced 2026-08-29 21:30:44 +00:00
libc: Implement local_t related functions
since local_t isn't really implemented on NuttX, we can simply redirect to the non-locale version. Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
decf7d0ad9
commit
cdc781bdfd
7 changed files with 67 additions and 2 deletions
|
|
@ -53,6 +53,9 @@
|
|||
#define bzero(s,n) (void)memset(s,0,n)
|
||||
#endif
|
||||
|
||||
#define strcasecmp_l(s1, s2, l) strcasecmp(s1, s2)
|
||||
#define strncasecmp_l(s1, s2, n, l) strncasecmp(s1, s2, n)
|
||||
|
||||
/****************************************************************************
|
||||
* Inline Functions
|
||||
****************************************************************************/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue