mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
e0c1541847
Hacked implementations of sigsetjmp() and siglongjmp(). I didn't know about these APIs until just now, but I hope I got them right.
25 lines
317 B
C
25 lines
317 B
C
#pragma once
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
enum {
|
|
LC_ALL,
|
|
LC_NUMERIC,
|
|
LC_CTYPE,
|
|
LC_COLLATE,
|
|
LC_TIME,
|
|
};
|
|
|
|
struct lconv {
|
|
char* decimal_point;
|
|
char* thousands_sep;
|
|
char* grouping;
|
|
};
|
|
|
|
struct lconv* localeconv();
|
|
char* setlocale(int category, const char* locale);
|
|
|
|
__END_DECLS
|
|
|