repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix local-dynamic model TLS on mips and powerpc
[musl.git]
/
src
/
locale
/
bind_textdomain_codeset.c
blob
5ebfd5e8a818fd1c1194116f14b17bdadbc8f473
1
#include <libintl.h>
2
#include <string.h>
3
#include <strings.h>
4
#include <errno.h>
5
6
char
*
bind_textdomain_codeset
(
const char
*
domainname
,
const char
*
codeset
)
7
{
8
if
(
codeset
&&
strcasecmp
(
codeset
,
"UTF-8"
))
9
errno
=
EINVAL
;
10
return
NULL
;
11
}