summaryrefslogtreecommitdiff
path: root/05/main.c
blob: a77ccf22f6402d493e6d162428ff42fc1043c2d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#define _STDLIB_DEBUG
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stddef.h>
#include <ctype.h>
#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;
}