bb3a2c4685e89ea112f4ed63dba54fb7a18e1e12
[musl] / src / locale / nl_langinfo.c
1 #include <langinfo.h>
2
3 // FIXME: other items
4
5 char *nl_langinfo(nl_item item)
6 {
7         switch (item) {
8         case CODESET:
9                 return "UTF-8";
10         default:
11                 return "";
12         }
13 }