mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
444 B
19 lines
444 B
#include <string.h>
|
|
#include <locale.h>
|
|
#include "locale_impl.h"
|
|
#include "libc.h"
|
|
|
|
/* collate only by code points */
|
|
size_t __strxfrm_l(char *restrict dest, const char *restrict src, size_t n, locale_t loc)
|
|
{
|
|
size_t l = strlen(src);
|
|
if (n > l) strcpy(dest, src);
|
|
return l;
|
|
}
|
|
|
|
size_t strxfrm(char *restrict dest, const char *restrict src, size_t n)
|
|
{
|
|
return __strxfrm_l(dest, src, n, CURRENT_LOCALE);
|
|
}
|
|
|
|
weak_alias(__strxfrm_l, strxfrm_l);
|
|
|