fxlibc/src/libc/string/strxfrm.c
Lephenixnoir d105b1d60a
string: add stubs for strcoll and strxfrm (TEST)
These extend the stub locale; strcoll is simply strcmp and strxfrm is
simply strncpy.
2021-05-23 18:07:36 +02:00

9 lines
173 B
C

#include <string.h>
#include <locale.h>
size_t strxfrm(char * restrict dest, char const * restrict src, size_t n)
{
if(dest) strncpy(dest, src, n);
return strlen(src);
}