Github User Fetcher 1.0.0
C Application with Server and GUI
|
#include <limits.h>
#include <stddef.h>
Go to the source code of this file.
Macros | |
#define | LUAI_IS32INT ((UINT_MAX >> 30) >= 3) |
#define | LUA_INT_INT 1 |
#define | LUA_INT_LONG 2 |
#define | LUA_INT_LONGLONG 3 |
#define | LUA_FLOAT_FLOAT 1 |
#define | LUA_FLOAT_DOUBLE 2 |
#define | LUA_FLOAT_LONGDOUBLE 3 |
#define | LUA_INT_DEFAULT LUA_INT_LONGLONG |
#define | LUA_FLOAT_DEFAULT LUA_FLOAT_DOUBLE |
#define | LUA_32BITS 0 |
#define | LUA_C89_NUMBERS 0 |
#define | LUA_INT_TYPE LUA_INT_DEFAULT |
#define | LUA_FLOAT_TYPE LUA_FLOAT_DEFAULT |
#define | LUA_PATH_SEP ";" |
#define | LUA_PATH_MARK "?" |
#define | LUA_EXEC_DIR "!" |
#define | LUA_VDIR LUA_VERSION_MAJOR "." LUA_VERSION_MINOR |
#define | LUA_ROOT "/usr/local/" |
#define | LUA_LDIR LUA_ROOT "share/lua/" LUA_VDIR "/" |
#define | LUA_CDIR LUA_ROOT "lib/lua/" LUA_VDIR "/" |
#define | LUA_PATH_DEFAULT |
#define | LUA_CPATH_DEFAULT LUA_CDIR"?.so;" LUA_CDIR"loadall.so;" "./?.so" |
#define | LUA_DIRSEP "/" |
#define | LUA_API extern |
#define | LUALIB_API LUA_API |
#define | LUAMOD_API LUA_API |
#define | LUAI_FUNC extern |
#define | LUAI_DDEC(dec) LUAI_FUNC dec |
#define | LUAI_DDEF /* empty */ |
#define | l_floor(x) (l_mathop(floor)(x)) |
#define | lua_number2str(s, sz, n) l_sprintf((s), sz, LUA_NUMBER_FMT, (LUAI_UACNUMBER)(n)) |
#define | lua_numbertointeger(n, p) |
#define | LUA_NUMBER double |
#define | l_floatatt(n) (DBL_##n) |
#define | LUAI_UACNUMBER double |
#define | LUA_NUMBER_FRMLEN "" |
#define | LUA_NUMBER_FMT "%.14g" |
#define | l_mathop(op) op |
#define | lua_str2number(s, p) strtod((s), (p)) |
#define | LUA_INTEGER_FMT "%" LUA_INTEGER_FRMLEN "d" |
#define | LUAI_UACINT LUA_INTEGER |
#define | lua_integer2str(s, sz, n) l_sprintf((s), sz, LUA_INTEGER_FMT, (LUAI_UACINT)(n)) |
#define | LUA_UNSIGNED unsigned LUAI_UACINT |
#define | LUA_UNSIGNEDBITS (sizeof(LUA_UNSIGNED) * CHAR_BIT) |
#define | l_sprintf(s, sz, f, i) snprintf(s,sz,f,i) |
#define | lua_strx2number(s, p) lua_str2number(s,p) |
#define | lua_pointer2str(buff, sz, p) l_sprintf(buff,sz,"%p",p) |
#define | lua_number2strx(L, b, sz, f, n) ((void)L, l_sprintf(b,sz,f,(LUAI_UACNUMBER)(n))) |
#define | LUA_KCONTEXT ptrdiff_t |
#define | lua_getlocaledecpoint() (localeconv()->decimal_point[0]) |
#define | luai_likely(x) (x) |
#define | luai_unlikely(x) (x) |
#define | LUAI_MAXSTACK 15000 |
#define | LUA_EXTRASPACE (sizeof(void *)) |
#define | LUA_IDSIZE 60 |
#define | LUAL_BUFFERSIZE ((int)(16 * sizeof(void*) * sizeof(lua_Number))) |
#define | LUAI_MAXALIGN lua_Number n; double u; void *s; lua_Integer i; long l |
#define l_floatatt | ( | n | ) | (DBL_##n) |
Definition at line 460 of file lua-5.4.3/src/luaconf.h.
#define l_floor | ( | x | ) | (l_mathop(floor)(x)) |
Definition at line 403 of file lua-5.4.3/src/luaconf.h.
#define l_mathop | ( | op | ) | op |
Definition at line 467 of file lua-5.4.3/src/luaconf.h.
Definition at line 586 of file lua-5.4.3/src/luaconf.h.
#define LUA_32BITS 0 |
Definition at line 119 of file lua-5.4.3/src/luaconf.h.
#define LUA_API extern |
Definition at line 282 of file lua-5.4.3/src/luaconf.h.
#define LUA_C89_NUMBERS 0 |
Definition at line 130 of file lua-5.4.3/src/luaconf.h.
#define LUA_CDIR LUA_ROOT "lib/lua/" LUA_VDIR "/" |
Definition at line 222 of file lua-5.4.3/src/luaconf.h.
#define LUA_CPATH_DEFAULT LUA_CDIR"?.so;" LUA_CDIR"loadall.so;" "./?.so" |
Definition at line 232 of file lua-5.4.3/src/luaconf.h.
#define LUA_DIRSEP "/" |
Definition at line 249 of file lua-5.4.3/src/luaconf.h.
#define LUA_EXEC_DIR "!" |
Definition at line 180 of file lua-5.4.3/src/luaconf.h.
#define LUA_EXTRASPACE (sizeof(void *)) |
Definition at line 749 of file lua-5.4.3/src/luaconf.h.
#define LUA_FLOAT_DEFAULT LUA_FLOAT_DOUBLE |
Definition at line 113 of file lua-5.4.3/src/luaconf.h.
#define LUA_FLOAT_DOUBLE 2 |
Definition at line 107 of file lua-5.4.3/src/luaconf.h.
#define LUA_FLOAT_FLOAT 1 |
Definition at line 106 of file lua-5.4.3/src/luaconf.h.
#define LUA_FLOAT_LONGDOUBLE 3 |
Definition at line 108 of file lua-5.4.3/src/luaconf.h.
#define LUA_FLOAT_TYPE LUA_FLOAT_DEFAULT |
Definition at line 156 of file lua-5.4.3/src/luaconf.h.
#define lua_getlocaledecpoint | ( | ) | (localeconv()->decimal_point[0]) |
Definition at line 660 of file lua-5.4.3/src/luaconf.h.
#define LUA_IDSIZE 60 |
Definition at line 757 of file lua-5.4.3/src/luaconf.h.
#define LUA_INT_DEFAULT LUA_INT_LONGLONG |
Definition at line 112 of file lua-5.4.3/src/luaconf.h.
#define LUA_INT_INT 1 |
Definition at line 101 of file lua-5.4.3/src/luaconf.h.
#define LUA_INT_LONG 2 |
Definition at line 102 of file lua-5.4.3/src/luaconf.h.
#define LUA_INT_LONGLONG 3 |
Definition at line 103 of file lua-5.4.3/src/luaconf.h.
#define LUA_INT_TYPE LUA_INT_DEFAULT |
Definition at line 155 of file lua-5.4.3/src/luaconf.h.
#define lua_integer2str | ( | s, | |
sz, | |||
n ) l_sprintf((s), sz, LUA_INTEGER_FMT, (LUAI_UACINT)(n)) |
Definition at line 499 of file lua-5.4.3/src/luaconf.h.
#define LUA_INTEGER_FMT "%" LUA_INTEGER_FRMLEN "d" |
Definition at line 495 of file lua-5.4.3/src/luaconf.h.
#define LUA_KCONTEXT ptrdiff_t |
Definition at line 642 of file lua-5.4.3/src/luaconf.h.
#define LUA_LDIR LUA_ROOT "share/lua/" LUA_VDIR "/" |
Definition at line 221 of file lua-5.4.3/src/luaconf.h.
#define LUA_NUMBER double |
Definition at line 458 of file lua-5.4.3/src/luaconf.h.
#define lua_number2str | ( | s, | |
sz, | |||
n ) l_sprintf((s), sz, LUA_NUMBER_FMT, (LUAI_UACNUMBER)(n)) |
Definition at line 405 of file lua-5.4.3/src/luaconf.h.
#define lua_number2strx | ( | L, | |
b, | |||
sz, | |||
f, | |||
n ) ((void)L, l_sprintf(b,sz,f,(LUAI_UACNUMBER)(n))) |
Definition at line 617 of file lua-5.4.3/src/luaconf.h.
#define LUA_NUMBER_FMT "%.14g" |
Definition at line 465 of file lua-5.4.3/src/luaconf.h.
#define LUA_NUMBER_FRMLEN "" |
Definition at line 464 of file lua-5.4.3/src/luaconf.h.
#define lua_numbertointeger | ( | n, | |
p ) |
Definition at line 417 of file lua-5.4.3/src/luaconf.h.
#define LUA_PATH_DEFAULT |
Definition at line 225 of file lua-5.4.3/src/luaconf.h.
#define LUA_PATH_MARK "?" |
Definition at line 179 of file lua-5.4.3/src/luaconf.h.
#define LUA_PATH_SEP ";" |
Definition at line 178 of file lua-5.4.3/src/luaconf.h.
#define lua_pointer2str | ( | buff, | |
sz, | |||
p ) l_sprintf(buff,sz,"%p",p) |
Definition at line 607 of file lua-5.4.3/src/luaconf.h.
#define LUA_ROOT "/usr/local/" |
Definition at line 220 of file lua-5.4.3/src/luaconf.h.
Definition at line 469 of file lua-5.4.3/src/luaconf.h.
#define lua_strx2number | ( | s, | |
p ) lua_str2number(s,p) |
Definition at line 599 of file lua-5.4.3/src/luaconf.h.
#define LUA_UNSIGNED unsigned LUAI_UACINT |
Definition at line 506 of file lua-5.4.3/src/luaconf.h.
#define LUA_UNSIGNEDBITS (sizeof(LUA_UNSIGNED) * CHAR_BIT) |
Definition at line 509 of file lua-5.4.3/src/luaconf.h.
#define LUA_VDIR LUA_VERSION_MAJOR "." LUA_VERSION_MINOR |
Definition at line 193 of file lua-5.4.3/src/luaconf.h.
#define LUAI_DDEC | ( | dec | ) | LUAI_FUNC dec |
Definition at line 315 of file lua-5.4.3/src/luaconf.h.
#define LUAI_DDEF /* empty */ |
Definition at line 316 of file lua-5.4.3/src/luaconf.h.
#define LUAI_FUNC extern |
Definition at line 312 of file lua-5.4.3/src/luaconf.h.
#define LUAI_IS32INT ((UINT_MAX >> 30) >= 3) |
Definition at line 76 of file lua-5.4.3/src/luaconf.h.
#define luai_likely | ( | x | ) | (x) |
Definition at line 676 of file lua-5.4.3/src/luaconf.h.
#define LUAI_MAXALIGN lua_Number n; double u; void *s; lua_Integer i; long l |
Definition at line 770 of file lua-5.4.3/src/luaconf.h.
#define LUAI_MAXSTACK 15000 |
Definition at line 740 of file lua-5.4.3/src/luaconf.h.
#define LUAI_UACINT LUA_INTEGER |
Definition at line 497 of file lua-5.4.3/src/luaconf.h.
#define LUAI_UACNUMBER double |
Definition at line 462 of file lua-5.4.3/src/luaconf.h.
#define luai_unlikely | ( | x | ) | (x) |
Definition at line 677 of file lua-5.4.3/src/luaconf.h.
#define LUAL_BUFFERSIZE ((int)(16 * sizeof(void*) * sizeof(lua_Number))) |
Definition at line 763 of file lua-5.4.3/src/luaconf.h.
#define LUALIB_API LUA_API |
Definition at line 290 of file lua-5.4.3/src/luaconf.h.
#define LUAMOD_API LUA_API |
Definition at line 291 of file lua-5.4.3/src/luaconf.h.