initial check-in, version 0.5.0
[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 }