This commit is contained in:
pommicket 2022-02-15 16:48:18 -05:00
parent 23198d16f4
commit 95e7ec1ab5
2 changed files with 64 additions and 5 deletions

View file

@ -4,13 +4,12 @@
#include <stdlib.h>
#include <stddef.h>
#include <ctype.h>
typedef struct {
int x;
long y;
} S;
#include <locale.h>
int main(int argc, char **argv) {
setlocale(LC_ALL, "C");
struct lconv *c = localeconv();
printf("%s\n",c->negative_sign);
return 0;
}