Files
RedBear-OS/tests/locale.c
T

16 lines
344 B
C

#include <locale.h>
#include <stdio.h>
#include <string.h>
#include "test_helpers.h"
int main(void) {
// TODO: Implement locale properly and test it here
char* val = setlocale(LC_ALL, NULL);
if (strcmp(val, "C") == 0) {
puts("success!");
} else {
printf("setlocale returned the wrong value: %s", val);
}
}