feat: port lua scripting language

This commit is contained in:
2026-03-27 21:53:33 +01:00
parent 88ff98c325
commit d197665fdd
131 changed files with 46362 additions and 358 deletions
+28
View File
@@ -0,0 +1,28 @@
#ifndef _LIBC_LOCALE_H
#define _LIBC_LOCALE_H
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#define LC_ALL 0
#define LC_COLLATE 1
#define LC_CTYPE 2
#define LC_MONETARY 3
#define LC_NUMERIC 4
#define LC_TIME 5
struct lconv {
char *decimal_point;
};
char *setlocale(int category, const char *locale);
struct lconv *localeconv(void);
#ifdef __cplusplus
}
#endif
#endif /* _LIBC_LOCALE_H */