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