8 lines
117 B
C
8 lines
117 B
C
#include <stdlib.h>
|
|
#include <locale.h>
|
|
|
|
char * setlocale(int category, const char *locale) {
|
|
return "en_US";
|
|
}
|
|
|