aboutsummaryrefslogtreecommitdiff
path: root/src/locale/bind_textdomain_codeset.c
blob: cf785b0064ec3eb1e3e2867d96d8ef2627d179b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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;
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif