ladybird/LibC/locale.h
Andreas Kling e0c1541847 Compat work towards making bash-5.0 build with less patches.
Hacked implementations of sigsetjmp() and siglongjmp(). I didn't know about
these APIs until just now, but I hope I got them right.
2019-02-26 14:05:28 +01:00

26 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