Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
fusl
/
src
/
locale
/
bind_textdomain_codeset.c
blob: 47859022049a26ad3152cd288daeb193c7eb5d3b [
file
] [
log
] [
blame
]
#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
;
}