1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 02:35:09 +00:00
serenity/LibC/locale.h

16 lines
171 B
C

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