shithub: scc

ref: 4f219193c028b5e3b35d7317c2ead65b0f721b5e
dir: /libc/include/locale.h/

View raw version

#ifndef _LOCALE_H
#define _LOCALE_H

#define LC_ALL      0
#define LC_COLLATE  1
#define LC_CTYPE    2
#define LC_MONETARY 3
#define LC_NUMERIC  4
#define LC_TIME     5

extern char *setlocale(int category, const char *locale);

#endif