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 | 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_ENV "_ENV" |
#define | LUA_API extern |
#define | LUALIB_API LUA_API |
#define | LUAMOD_API LUALIB_API |
#define | LUAI_FUNC extern |
#define | LUAI_DDEC extern |
#define | LUAI_DDEF /* empty */ |
#define | LUA_QL(x) "'" x "'" |
#define | LUA_QS LUA_QL("%s") |
#define | LUA_IDSIZE 60 |
#define | luai_writestringerror(s, p) (fprintf(stderr, (s), (p)), fflush(stderr)) |
#define | LUAI_MAXSHORTLEN 40 |
#define | LUAI_BITSINT 16 |
#define | LUA_INT32 long |
#define | LUAI_UMEM unsigned long |
#define | LUAI_MEM long |
#define | LUAI_MAXSTACK 15000 |
#define | LUAI_FIRSTPSEUDOIDX (-LUAI_MAXSTACK - 1000) |
#define | LUAL_BUFFERSIZE BUFSIZ |
#define | LUA_NUMBER_DOUBLE |
#define | LUA_NUMBER double |
#define | LUAI_UACNUMBER double |
#define | LUA_NUMBER_SCAN "%lf" |
#define | LUA_NUMBER_FMT "%.14g" |
#define | lua_number2str(s, n) sprintf((s), LUA_NUMBER_FMT, (n)) |
#define | LUAI_MAXNUMBER2STR 32 /* 16 digits, sign, point, and \0 */ |
#define | l_mathop(x) (x) |
#define | lua_str2number(s, p) strtod((s), (p)) |
#define | LUA_INTEGER ptrdiff_t |
#define | LUA_UNSIGNED unsigned LUA_INT32 |
#define | LUA_IEEE754TRICK |
#define l_mathop | ( | x | ) | (x) |
Definition at line 411 of file lua-5.2.4/src/luaconf.h.
Referenced by l_hashfloat(), l_hashfloat(), lua_strx2number(), math_abs(), math_abs(), math_abs(), math_acos(), math_acos(), math_acos(), math_asin(), math_asin(), math_asin(), math_atan(), math_atan(), math_atan(), math_atan2(), math_ceil(), math_ceil(), math_ceil(), math_cos(), math_cos(), math_cos(), math_cosh(), math_deg(), math_deg(), math_exp(), math_exp(), math_exp(), math_floor(), math_floor(), math_floor(), math_fmod(), math_fmod(), math_fmod(), math_frexp(), math_ldexp(), math_log(), math_log(), math_log(), math_modf(), math_modf(), math_modf(), math_pow(), math_rad(), math_rad(), math_random(), math_sin(), math_sin(), math_sin(), math_sinh(), math_sqrt(), math_sqrt(), math_sqrt(), math_tan(), math_tan(), math_tan(), and math_tanh().
#define LUA_API extern |
Definition at line 153 of file lua-5.2.4/src/luaconf.h.
#define LUA_CDIR LUA_ROOT "lib/lua/" LUA_VDIR |
Definition at line 105 of file lua-5.2.4/src/luaconf.h.
#define LUA_CPATH_DEFAULT LUA_CDIR"?.so;" LUA_CDIR"loadall.so;" "./?.so" |
Definition at line 109 of file lua-5.2.4/src/luaconf.h.
#define LUA_DIRSEP "/" |
Definition at line 122 of file lua-5.2.4/src/luaconf.h.
#define LUA_ENV "_ENV" |
Definition at line 131 of file lua-5.2.4/src/luaconf.h.
Referenced by getobjname(), getobjname(), gxf(), luaX_init(), and luaX_setinput().
#define LUA_IDSIZE 60 |
Definition at line 204 of file lua-5.2.4/src/luaconf.h.
#define LUA_IEEE754TRICK |
Definition at line 530 of file lua-5.2.4/src/luaconf.h.
#define LUA_INT32 long |
Definition at line 344 of file lua-5.2.4/src/luaconf.h.
#define LUA_INTEGER ptrdiff_t |
Definition at line 460 of file lua-5.2.4/src/luaconf.h.
#define LUA_LDIR LUA_ROOT "share/lua/" LUA_VDIR |
Definition at line 104 of file lua-5.2.4/src/luaconf.h.
#define LUA_NUMBER double |
Definition at line 387 of file lua-5.2.4/src/luaconf.h.
#define lua_number2str | ( | s, | |
n ) sprintf((s), LUA_NUMBER_FMT, (n)) |
Definition at line 404 of file lua-5.2.4/src/luaconf.h.
#define LUA_NUMBER_DOUBLE |
Definition at line 386 of file lua-5.2.4/src/luaconf.h.
#define LUA_NUMBER_FMT "%.14g" |
Definition at line 403 of file lua-5.2.4/src/luaconf.h.
#define LUA_NUMBER_SCAN "%lf" |
Definition at line 402 of file lua-5.2.4/src/luaconf.h.
#define LUA_PATH_DEFAULT |
Definition at line 106 of file lua-5.2.4/src/luaconf.h.
#define LUA_QL | ( | x | ) | "'" x "'" |
Definition at line 195 of file lua-5.2.4/src/luaconf.h.
#define LUA_QS LUA_QL("%s") |
Definition at line 196 of file lua-5.2.4/src/luaconf.h.
#define LUA_ROOT "/usr/local/" |
Definition at line 103 of file lua-5.2.4/src/luaconf.h.
Definition at line 422 of file lua-5.2.4/src/luaconf.h.
#define LUA_UNSIGNED unsigned LUA_INT32 |
Definition at line 466 of file lua-5.2.4/src/luaconf.h.
#define LUA_VDIR LUA_VERSION_MAJOR "." LUA_VERSION_MINOR "/" |
Definition at line 102 of file lua-5.2.4/src/luaconf.h.
#define LUAI_BITSINT 16 |
Definition at line 319 of file lua-5.2.4/src/luaconf.h.
#define LUAI_DDEC extern |
Definition at line 185 of file lua-5.2.4/src/luaconf.h.
#define LUAI_DDEF /* empty */ |
Definition at line 186 of file lua-5.2.4/src/luaconf.h.
#define LUAI_FIRSTPSEUDOIDX (-LUAI_MAXSTACK - 1000) |
Definition at line 363 of file lua-5.2.4/src/luaconf.h.
#define LUAI_FUNC extern |
Definition at line 184 of file lua-5.2.4/src/luaconf.h.
#define LUAI_MAXNUMBER2STR 32 /* 16 digits, sign, point, and \0 */ |
Definition at line 405 of file lua-5.2.4/src/luaconf.h.
#define LUAI_MAXSHORTLEN 40 |
Definition at line 232 of file lua-5.2.4/src/luaconf.h.
Referenced by LoadString(), loadStringN(), luaS_newlstr(), and luaV_concat().
#define LUAI_MAXSTACK 15000 |
Definition at line 359 of file lua-5.2.4/src/luaconf.h.
Referenced by lua_checkstack(), lua_checkstack(), luaD_growstack(), luaD_growstack(), luaD_reallocstack(), luaD_reallocstack(), and luaD_shrinkstack().
#define LUAI_MEM long |
Definition at line 346 of file lua-5.2.4/src/luaconf.h.
#define LUAI_UACNUMBER double |
Definition at line 393 of file lua-5.2.4/src/luaconf.h.
#define LUAI_UMEM unsigned long |
Definition at line 345 of file lua-5.2.4/src/luaconf.h.
Definition at line 222 of file lua-5.2.4/src/luaconf.h.
Referenced by db_debug(), l_message(), panic(), and print_usage().
#define LUAL_BUFFERSIZE BUFSIZ |
Definition at line 372 of file lua-5.2.4/src/luaconf.h.
#define LUALIB_API LUA_API |
Definition at line 159 of file lua-5.2.4/src/luaconf.h.
#define LUAMOD_API LUALIB_API |
Definition at line 160 of file lua-5.2.4/src/luaconf.h.