Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
4a8335b2248d934e2e40386af4f1b0495b3c173d
/
.
/
src
/
locale
/
bind_textdomain_codeset.c
blob: 5ebfd5e8a818fd1c1194116f14b17bdadbc8f473 [
file
]
#include
<libintl.h>
#include
<string.h>
#include
<strings.h>
#include
<errno.h>
char
*
bind_textdomain_codeset
(
const
char
*
domainname
,
const
char
*
codeset
)
{
if
(
codeset
&&
strcasecmp
(
codeset
,
"UTF-8"
))
errno
=
EINVAL
;
return
NULL
;
}