mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-31 13:48:25 +00:00
17 lines
171 B
C
17 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
|
|
|