mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
15 lines
157 B
C
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
|
|
|