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_BITSINT 16 |
#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_TYPE LUA_INT_LONGLONG |
#define | LUA_FLOAT_TYPE LUA_FLOAT_DOUBLE |
#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 LUALIB_API |
#define | LUAI_FUNC extern |
#define | LUAI_DDEC LUAI_FUNC |
#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_mathlim(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 | 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_MAXSTACK 15000 |
#define | LUA_EXTRASPACE (sizeof(void *)) |
#define | LUA_IDSIZE 60 |
#define | LUAL_BUFFERSIZE ((int)(0x80 * sizeof(void*) * sizeof(lua_Integer))) |
#define | LUA_QL(x) "'" x "'" |
#define | LUA_QS LUA_QL("%s") |
#define l_floor | ( | x | ) | (l_mathop(floor)(x)) |
Definition at line 434 of file lua-5.3.6/src/luaconf.h.
Referenced by luaV_flttointeger(), and luaV_tointeger().
#define l_mathlim | ( | n | ) | (DBL_##n) |
Definition at line 490 of file lua-5.3.6/src/luaconf.h.
#define l_mathop | ( | op | ) | op |
Definition at line 497 of file lua-5.3.6/src/luaconf.h.
Definition at line 606 of file lua-5.3.6/src/luaconf.h.
Referenced by addliteral(), addliteral(), addquoted(), addquoted(), quotefloat(), str_format(), and str_format().
#define LUA_API extern |
Definition at line 254 of file lua-5.3.6/src/luaconf.h.
#define LUA_CDIR LUA_ROOT "lib/lua/" LUA_VDIR "/" |
Definition at line 205 of file lua-5.3.6/src/luaconf.h.
#define LUA_CPATH_DEFAULT LUA_CDIR"?.so;" LUA_CDIR"loadall.so;" "./?.so" |
Definition at line 210 of file lua-5.3.6/src/luaconf.h.
#define LUA_DIRSEP "/" |
Definition at line 223 of file lua-5.3.6/src/luaconf.h.
#define LUA_EXEC_DIR "!" |
Definition at line 170 of file lua-5.3.6/src/luaconf.h.
#define LUA_EXTRASPACE (sizeof(void *)) |
Definition at line 740 of file lua-5.3.6/src/luaconf.h.
Referenced by lua_newthread().
#define LUA_FLOAT_DOUBLE 2 |
Definition at line 115 of file lua-5.3.6/src/luaconf.h.
#define LUA_FLOAT_FLOAT 1 |
Definition at line 114 of file lua-5.3.6/src/luaconf.h.
#define LUA_FLOAT_LONGDOUBLE 3 |
Definition at line 116 of file lua-5.3.6/src/luaconf.h.
#define LUA_FLOAT_TYPE LUA_FLOAT_DOUBLE |
Definition at line 147 of file lua-5.3.6/src/luaconf.h.
#define lua_getlocaledecpoint | ( | ) | (localeconv()->decimal_point[0]) |
Definition at line 680 of file lua-5.3.6/src/luaconf.h.
Referenced by checkdp(), l_str2d(), l_str2d(), luaO_tostring(), quotefloat(), read_number(), read_number(), and tostringbuff().
#define LUA_IDSIZE 60 |
Definition at line 748 of file lua-5.3.6/src/luaconf.h.
#define LUA_INT_INT 1 |
Definition at line 109 of file lua-5.3.6/src/luaconf.h.
#define LUA_INT_LONG 2 |
Definition at line 110 of file lua-5.3.6/src/luaconf.h.
#define LUA_INT_LONGLONG 3 |
Definition at line 111 of file lua-5.3.6/src/luaconf.h.
#define LUA_INT_TYPE LUA_INT_LONGLONG |
Definition at line 143 of file lua-5.3.6/src/luaconf.h.
#define lua_integer2str | ( | s, | |
sz, | |||
n ) l_sprintf((s), sz, LUA_INTEGER_FMT, (LUAI_UACINT)(n)) |
Definition at line 530 of file lua-5.3.6/src/luaconf.h.
Referenced by luaO_tostring(), and tostringbuff().
#define LUA_INTEGER_FMT "%" LUA_INTEGER_FRMLEN "d" |
Definition at line 526 of file lua-5.3.6/src/luaconf.h.
Referenced by addliteral(), addliteral(), g_write(), g_write(), PrintConstant(), and PrintConstant().
#define LUA_KCONTEXT ptrdiff_t |
Definition at line 662 of file lua-5.3.6/src/luaconf.h.
#define LUA_LDIR LUA_ROOT "share/lua/" LUA_VDIR "/" |
Definition at line 204 of file lua-5.3.6/src/luaconf.h.
#define LUA_NUMBER double |
Definition at line 488 of file lua-5.3.6/src/luaconf.h.
#define lua_number2str | ( | s, | |
sz, | |||
n ) l_sprintf((s), sz, LUA_NUMBER_FMT, (LUAI_UACNUMBER)(n)) |
Definition at line 436 of file lua-5.3.6/src/luaconf.h.
#define lua_number2strx | ( | L, | |
b, | |||
sz, | |||
f, | |||
n ) ((void)L, l_sprintf(b,sz,f,(LUAI_UACNUMBER)(n))) |
Definition at line 637 of file lua-5.3.6/src/luaconf.h.
Referenced by addliteral(), quotefloat(), str_format(), and str_format().
#define LUA_NUMBER_FMT "%.14g" |
Definition at line 495 of file lua-5.3.6/src/luaconf.h.
#define LUA_NUMBER_FRMLEN "" |
Definition at line 494 of file lua-5.3.6/src/luaconf.h.
Referenced by addliteral(), quotefloat(), str_format(), and str_format().
#define lua_numbertointeger | ( | n, | |
p ) |
Definition at line 447 of file lua-5.3.6/src/luaconf.h.
Referenced by l_hashfloat(), l_hashfloat(), luaV_flttointeger(), luaV_tointeger(), pushnumint(), and pushnumint().
#define LUA_PATH_DEFAULT |
Definition at line 206 of file lua-5.3.6/src/luaconf.h.
#define LUA_PATH_MARK "?" |
Definition at line 169 of file lua-5.3.6/src/luaconf.h.
#define LUA_PATH_SEP ";" |
Definition at line 168 of file lua-5.3.6/src/luaconf.h.
#define lua_pointer2str | ( | buff, | |
sz, | |||
p ) l_sprintf(buff,sz,"%p",p) |
Definition at line 627 of file lua-5.3.6/src/luaconf.h.
Referenced by luaO_pushvfstring().
#define LUA_QL | ( | x | ) | "'" x "'" |
Definition at line 772 of file lua-5.3.6/src/luaconf.h.
#define LUA_QS LUA_QL("%s") |
Definition at line 773 of file lua-5.3.6/src/luaconf.h.
#define LUA_ROOT "/usr/local/" |
Definition at line 203 of file lua-5.3.6/src/luaconf.h.
Definition at line 499 of file lua-5.3.6/src/luaconf.h.
#define lua_strx2number | ( | s, | |
p ) lua_str2number(s,p) |
Definition at line 619 of file lua-5.3.6/src/luaconf.h.
Referenced by l_str2dloc(), l_str2dloc(), and luaO_str2d().
#define LUA_UNSIGNED unsigned LUAI_UACINT |
Definition at line 537 of file lua-5.3.6/src/luaconf.h.
#define LUA_VDIR LUA_VERSION_MAJOR "." LUA_VERSION_MINOR |
Definition at line 182 of file lua-5.3.6/src/luaconf.h.
#define LUAI_BITSINT 16 |
Definition at line 94 of file lua-5.3.6/src/luaconf.h.
#define LUAI_DDEC LUAI_FUNC |
Definition at line 285 of file lua-5.3.6/src/luaconf.h.
#define LUAI_DDEF /* empty */ |
Definition at line 286 of file lua-5.3.6/src/luaconf.h.
#define LUAI_FUNC extern |
Definition at line 282 of file lua-5.3.6/src/luaconf.h.
#define LUAI_MAXSTACK 15000 |
Definition at line 731 of file lua-5.3.6/src/luaconf.h.
#define LUAI_UACINT LUA_INTEGER |
Definition at line 528 of file lua-5.3.6/src/luaconf.h.
Referenced by addliteral(), addliteral(), g_write(), g_write(), luaL_tolstring(), str_format(), and str_format().
#define LUAI_UACNUMBER double |
Definition at line 492 of file lua-5.3.6/src/luaconf.h.
#define LUAL_BUFFERSIZE ((int)(0x80 * sizeof(void*) * sizeof(lua_Integer))) |
Definition at line 761 of file lua-5.3.6/src/luaconf.h.
#define LUALIB_API LUA_API |
Definition at line 260 of file lua-5.3.6/src/luaconf.h.
#define LUAMOD_API LUALIB_API |
Definition at line 261 of file lua-5.3.6/src/luaconf.h.