16 lines
344 B
C
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);
|
|
}
|
|
}
|