lang-bootstrap/05/musl-final/src/locale/nl_langinfo.c
2025-04-05 10:55:40 +01:00

13 lines
158 B
C

#include <langinfo.h>
// FIXME: other items
char *nl_langinfo(nl_item item)
{
switch (item) {
case CODESET:
return "UTF-8";
default:
return "";
}
}