14 lines
332 B
C
14 lines
332 B
C
/* $OpenBSD: strxfrm_l.c,v 1.1 2017/09/05 03:16:14 schwarze Exp $ */
|
|
/*
|
|
* Written in 2017 by Ingo Schwarze <schwarze@openbsd.org>.
|
|
* Released into the public domain.
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
size_t
|
|
strxfrm_l(char *dst, const char *src, size_t n,
|
|
locale_t locale __attribute__((__unused__)))
|
|
{
|
|
return strxfrm(dst, src, n);
|
|
}
|