mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 09:02:44 +02:00
16 lines
157 B
C
16 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
|
|
|