1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 06:34:58 +00:00
serenity/LibC/locale.h

21 lines
234 B
C

#pragma once
#include <sys/cdefs.h>
__BEGIN_DECLS
enum {
LC_ALL,
LC_NUMERIC,
LC_CTYPE,
LC_COLLATE,
};
struct lconv {
};
struct lconv* localeconv();
char* setlocale(int category, const char* locale);
__END_DECLS