1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 16:35:08 +00:00
serenity/LibC/locale.h

15 lines
157 B
C

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