Github User Fetcher 1.0.0
C Application with Server and GUI
|
#include "lprefix.h"
#include <ctype.h>
#include <float.h>
#include <limits.h>
#include <locale.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"
Go to the source code of this file.
Data Structures | |
struct | MatchState |
struct | GMatchState |
struct | cD |
union | Ftypes |
struct | Header |
Macros | |
#define | lstrlib_c |
#define | LUA_LIB |
#define | LUA_MAXCAPTURES 32 |
#define | uchar(c) ((unsigned char)(c)) |
#define | MAX_SIZET ((size_t)(~(size_t)0)) |
#define | MAXSIZE (sizeof(size_t) < sizeof(int) ? MAX_SIZET : (size_t)(INT_MAX)) |
#define | CAP_UNFINISHED (-1) |
#define | CAP_POSITION (-2) |
#define | MAXCCALLS 200 |
#define | L_ESC '%' |
#define | SPECIALS "^$*+?.([%-" |
#define | MAX_ITEM (120 + l_mathlim(MAX_10_EXP)) |
#define | FLAGS "-+ #0" |
#define | MAX_FORMAT 32 |
#define | LUAL_PACKPADBYTE 0x00 |
#define | MAXINTSIZE 16 |
#define | NB CHAR_BIT |
#define | MC ((1 << NB) - 1) |
#define | SZINT ((int)sizeof(lua_Integer)) |
#define | MAXALIGN (offsetof(struct cD, u)) |
Typedefs | |
typedef struct MatchState | MatchState |
typedef struct GMatchState | GMatchState |
typedef union Ftypes | Ftypes |
typedef struct Header | Header |
typedef enum KOption | KOption |
Enumerations | |
enum | KOption { Kint , Kuint , Kfloat , Kchar , Kstring , Kzstr , Kpadding , Kpaddalign , Knop } |
Functions | |
static int | str_len (lua_State *L) |
static lua_Integer | posrelat (lua_Integer pos, size_t len) |
static int | str_sub (lua_State *L) |
static int | str_reverse (lua_State *L) |
static int | str_lower (lua_State *L) |
static int | str_upper (lua_State *L) |
static int | str_rep (lua_State *L) |
static int | str_byte (lua_State *L) |
static int | str_char (lua_State *L) |
static int | writer (lua_State *L, const void *b, size_t size, void *B) |
static int | str_dump (lua_State *L) |
static const char * | match (MatchState *ms, const char *s, const char *p) |
static int | check_capture (MatchState *ms, int l) |
static int | capture_to_close (MatchState *ms) |
static const char * | classend (MatchState *ms, const char *p) |
static int | match_class (int c, int cl) |
static int | matchbracketclass (int c, const char *p, const char *ec) |
static int | singlematch (MatchState *ms, const char *s, const char *p, const char *ep) |
static const char * | matchbalance (MatchState *ms, const char *s, const char *p) |
static const char * | max_expand (MatchState *ms, const char *s, const char *p, const char *ep) |
static const char * | min_expand (MatchState *ms, const char *s, const char *p, const char *ep) |
static const char * | start_capture (MatchState *ms, const char *s, const char *p, int what) |
static const char * | end_capture (MatchState *ms, const char *s, const char *p) |
static const char * | match_capture (MatchState *ms, const char *s, int l) |
static const char * | lmemfind (const char *s1, size_t l1, const char *s2, size_t l2) |
static void | push_onecapture (MatchState *ms, int i, const char *s, const char *e) |
static int | push_captures (MatchState *ms, const char *s, const char *e) |
static int | nospecials (const char *p, size_t l) |
static void | prepstate (MatchState *ms, lua_State *L, const char *s, size_t ls, const char *p, size_t lp) |
static void | reprepstate (MatchState *ms) |
static int | str_find_aux (lua_State *L, int find) |
static int | str_find (lua_State *L) |
static int | str_match (lua_State *L) |
static int | gmatch_aux (lua_State *L) |
static int | gmatch (lua_State *L) |
static void | add_s (MatchState *ms, luaL_Buffer *b, const char *s, const char *e) |
static void | add_value (MatchState *ms, luaL_Buffer *b, const char *s, const char *e, int tr) |
static int | str_gsub (lua_State *L) |
static void | addquoted (luaL_Buffer *b, const char *s, size_t len) |
static void | checkdp (char *buff, int nb) |
static void | addliteral (lua_State *L, luaL_Buffer *b, int arg) |
static const char * | scanformat (lua_State *L, const char *strfrmt, char *form) |
static void | addlenmod (char *form, const char *lenmod) |
static int | str_format (lua_State *L) |
static int | digit (int c) |
static int | getnum (const char **fmt, int df) |
static int | getnumlimit (Header *h, const char **fmt, int df) |
static void | initheader (lua_State *L, Header *h) |
static KOption | getoption (Header *h, const char **fmt, int *size) |
static KOption | getdetails (Header *h, size_t totalsize, const char **fmt, int *psize, int *ntoalign) |
static void | packint (luaL_Buffer *b, lua_Unsigned n, int islittle, int size, int neg) |
static void | copywithendian (volatile char *dest, volatile const char *src, int size, int islittle) |
static int | str_pack (lua_State *L) |
static int | str_packsize (lua_State *L) |
static lua_Integer | unpackint (lua_State *L, const char *str, int islittle, int size, int issigned) |
static int | str_unpack (lua_State *L) |
static void | createmetatable (lua_State *L) |
LUAMOD_API int | luaopen_string (lua_State *L) |
Variables | ||
union { | ||
int dummy | ||
char little | ||
} | nativeendian = {1} | |
static const luaL_Reg | strlib [] | |
#define CAP_POSITION (-2) |
Definition at line 211 of file lua-5.3.6/src/lstrlib.c.
Referenced by match(), and push_onecapture().
#define CAP_UNFINISHED (-1) |
Definition at line 210 of file lua-5.3.6/src/lstrlib.c.
Referenced by capture_to_close(), check_capture(), end_capture(), match(), and push_onecapture().
#define FLAGS "-+ #0" |
Definition at line 900 of file lua-5.3.6/src/lstrlib.c.
Referenced by scanformat().
#define L_ESC '%' |
Definition at line 238 of file lua-5.3.6/src/lstrlib.c.
Referenced by add_s(), classend(), match(), matchbracketclass(), singlematch(), and str_format().
#define lstrlib_c |
Definition at line 7 of file lua-5.3.6/src/lstrlib.c.
#define LUA_LIB |
Definition at line 8 of file lua-5.3.6/src/lstrlib.c.
#define LUA_MAXCAPTURES 32 |
Definition at line 34 of file lua-5.3.6/src/lstrlib.c.
Referenced by start_capture().
#define LUAL_PACKPADBYTE 0x00 |
Definition at line 1107 of file lua-5.3.6/src/lstrlib.c.
Referenced by str_pack().
#define MAX_FORMAT 32 |
Definition at line 905 of file lua-5.3.6/src/lstrlib.c.
Referenced by str_format().
#define MAX_ITEM (120 + l_mathlim(MAX_10_EXP)) |
Definition at line 896 of file lua-5.3.6/src/lstrlib.c.
Referenced by addliteral(), and str_format().
#define MAX_SIZET ((size_t)(~(size_t)0)) |
Definition at line 46 of file lua-5.3.6/src/lstrlib.c.
Definition at line 1136 of file lua-5.3.6/src/lstrlib.c.
Referenced by getoption().
#define MAXCCALLS 200 |
Definition at line 234 of file lua-5.3.6/src/lstrlib.c.
Referenced by prepstate(), and reprepstate().
#define MAXINTSIZE 16 |
Definition at line 1111 of file lua-5.3.6/src/lstrlib.c.
Referenced by getnumlimit().
#define MAXSIZE (sizeof(size_t) < sizeof(int) ? MAX_SIZET : (size_t)(INT_MAX)) |
Definition at line 48 of file lua-5.3.6/src/lstrlib.c.
Referenced by getnum(), str_packsize(), and str_rep().
#define MC ((1 << NB) - 1) |
Definition at line 1117 of file lua-5.3.6/src/lstrlib.c.
Referenced by packint(), and unpackint().
#define NB CHAR_BIT |
Definition at line 1114 of file lua-5.3.6/src/lstrlib.c.
Referenced by packint(), str_pack(), and unpackint().
#define SPECIALS "^$*+?.([%-" |
Definition at line 239 of file lua-5.3.6/src/lstrlib.c.
Referenced by nospecials().
#define SZINT ((int)sizeof(lua_Integer)) |
Definition at line 1120 of file lua-5.3.6/src/lstrlib.c.
Referenced by packint(), str_pack(), and unpackint().
#define uchar | ( | c | ) | ((unsigned char)(c)) |
Definition at line 39 of file lua-5.3.6/src/lstrlib.c.
Referenced by add_s(), addquoted(), match(), matchbracketclass(), scanformat(), singlematch(), str_byte(), str_char(), str_lower(), and str_upper().
typedef union Ftypes Ftypes |
typedef struct GMatchState GMatchState |
typedef struct Header Header |
typedef struct MatchState MatchState |
enum KOption |
Enumerator | |
---|---|
Kint | |
Kuint | |
Kfloat | |
Kchar | |
Kstring | |
Kzstr | |
Kpadding | |
Kpaddalign | |
Knop |
Definition at line 1163 of file lua-5.3.6/src/lstrlib.c.
|
static |
Definition at line 703 of file lua-5.3.6/src/lstrlib.c.
References MatchState::L, L_ESC, lua_remove, lua_tolstring(), luaL_addchar, luaL_addlstring(), luaL_addvalue(), luaL_error(), luaL_tolstring(), NULL, push_onecapture(), s, and uchar.
Referenced by add_value().
|
static |
Definition at line 731 of file lua-5.3.6/src/lstrlib.c.
References add_s(), MatchState::L, lua_call, lua_gettable(), lua_isstring(), lua_pop, lua_pushlstring(), lua_pushvalue(), LUA_TFUNCTION, lua_toboolean(), LUA_TTABLE, luaL_addvalue(), luaL_error(), luaL_typename, push_captures(), push_onecapture(), and s.
Referenced by str_gsub().
|
static |
Definition at line 1006 of file lua-5.3.6/src/lstrlib.c.
Referenced by str_format().
|
static |
Definition at line 943 of file lua-5.3.6/src/lstrlib.c.
References addquoted(), arg, checkdp(), format(), l_sprintf, LUA_INTEGER_FMT, lua_isinteger(), lua_number2strx, LUA_NUMBER_FRMLEN, LUA_TBOOLEAN, LUA_TNIL, LUA_TNUMBER, lua_tointeger, lua_tolstring(), lua_tonumber, LUA_TSTRING, lua_type(), LUAI_UACINT, luaL_addsize, luaL_addvalue(), luaL_argerror(), luaL_prepbuffsize(), luaL_tolstring(), MAX_ITEM, NULL, and s.
Referenced by str_format().
|
static |
Definition at line 908 of file lua-5.3.6/src/lstrlib.c.
References l_sprintf, luaL_addchar, luaL_addstring(), s, and uchar.
Referenced by addliteral().
|
static |
Definition at line 250 of file lua-5.3.6/src/lstrlib.c.
References CAP_UNFINISHED, MatchState::capture, MatchState::L, MatchState::len, MatchState::level, and luaL_error().
Referenced by end_capture().
|
static |
Definition at line 242 of file lua-5.3.6/src/lstrlib.c.
References CAP_UNFINISHED, MatchState::capture, MatchState::L, MatchState::len, MatchState::level, and luaL_error().
Referenced by match_capture().
|
static |
Definition at line 934 of file lua-5.3.6/src/lstrlib.c.
References lua_getlocaledecpoint, and NULL.
Referenced by addliteral().
|
static |
Definition at line 258 of file lua-5.3.6/src/lstrlib.c.
References MatchState::L, L_ESC, luaL_error(), and MatchState::p_end.
Referenced by match().
|
static |
Definition at line 1316 of file lua-5.3.6/src/lstrlib.c.
References nativeendian.
Referenced by str_pack(), and str_unpack().
|
static |
Definition at line 1564 of file lua-5.3.6/src/lstrlib.c.
References lua_createtable(), lua_pop, lua_pushliteral, lua_pushvalue(), lua_setfield(), and lua_setmetatable().
Referenced by luaopen_string().
|
static |
Definition at line 1180 of file lua-5.3.6/src/lstrlib.c.
Referenced by b_str2int(), b_str2int(), et_getdigit(), getnum(), and luaB_tonumber().
|
static |
Definition at line 403 of file lua-5.3.6/src/lstrlib.c.
References CAP_UNFINISHED, MatchState::capture, capture_to_close(), MatchState::init, MatchState::len, match(), NULL, and s.
Referenced by match().
|
static |
Definition at line 1268 of file lua-5.3.6/src/lstrlib.c.
References getoption(), Kchar, Kpaddalign, Header::L, luaL_argerror(), and Header::maxalign.
Referenced by str_pack(), str_packsize(), and str_unpack().
|
static |
Definition at line 1182 of file lua-5.3.6/src/lstrlib.c.
References digit(), and MAXSIZE.
Referenced by getnumlimit(), and getoption().
|
static |
Definition at line 1199 of file lua-5.3.6/src/lstrlib.c.
References getnum(), Header::L, luaL_error(), and MAXINTSIZE.
Referenced by getoption().
Definition at line 1221 of file lua-5.3.6/src/lstrlib.c.
References getnum(), getnumlimit(), Header::islittle, Kchar, Kfloat, Kint, Knop, Kpaddalign, Kpadding, Kstring, Kuint, Kzstr, Header::L, luaL_error(), MAXALIGN, Header::maxalign, and nativeendian.
Referenced by getdetails().
|
static |
Definition at line 689 of file lua-5.3.6/src/lstrlib.c.
References gmatch_aux(), GMatchState::lastmatch, lua_newuserdata, lua_pushcclosure(), lua_settop(), luaL_checklstring(), GMatchState::ms, NULL, GMatchState::p, prepstate(), s, and GMatchState::src.
|
static |
Definition at line 673 of file lua-5.3.6/src/lstrlib.c.
References MatchState::L, GMatchState::lastmatch, lua_touserdata(), lua_upvalueindex, match(), GMatchState::ms, NULL, GMatchState::p, push_captures(), reprepstate(), GMatchState::src, and MatchState::src_end.
Referenced by gmatch().
Definition at line 1211 of file lua-5.3.6/src/lstrlib.c.
References Header::islittle, Header::L, Header::maxalign, and nativeendian.
Referenced by str_pack(), str_packsize(), and str_unpack().
|
static |
Definition at line 528 of file lua-5.3.6/src/lstrlib.c.
References NULL.
Referenced by str_find_aux().
LUAMOD_API int luaopen_string | ( | lua_State * | L | ) |
Definition at line 1579 of file lua-5.3.6/src/lstrlib.c.
References createmetatable(), luaL_newlib, and strlib.
|
static |
Definition at line 425 of file lua-5.3.6/src/lstrlib.c.
References CAP_POSITION, CAP_UNFINISHED, classend(), end_capture(), MatchState::L, L_ESC, luaL_error(), match(), match_capture(), matchbalance(), matchbracketclass(), MatchState::matchdepth, max_expand(), min_expand(), NULL, MatchState::p_end, s, singlematch(), MatchState::src_end, MatchState::src_init, start_capture(), and uchar.
Referenced by end_capture(), gmatch_aux(), match(), max_expand(), min_expand(), start_capture(), str_find_aux(), and str_gsub().
|
static |
Definition at line 414 of file lua-5.3.6/src/lstrlib.c.
References MatchState::capture, check_capture(), MatchState::init, MatchState::len, NULL, s, and MatchState::src_end.
Referenced by match().
|
static |
Definition at line 282 of file lua-5.3.6/src/lstrlib.c.
Referenced by matchbracketclass(), and singlematch().
|
static |
Definition at line 341 of file lua-5.3.6/src/lstrlib.c.
References MatchState::L, luaL_error(), NULL, MatchState::p_end, and s.
Referenced by match().
|
static |
Definition at line 302 of file lua-5.3.6/src/lstrlib.c.
References L_ESC, match_class(), and uchar.
Referenced by match(), and singlematch().
|
static |
Definition at line 361 of file lua-5.3.6/src/lstrlib.c.
References match(), NULL, s, and singlematch().
Referenced by match().
|
static |
Definition at line 376 of file lua-5.3.6/src/lstrlib.c.
References match(), NULL, s, and singlematch().
Referenced by match().
|
static |
Definition at line 580 of file lua-5.3.6/src/lstrlib.c.
References SPECIALS.
Referenced by str_find_aux().
|
static |
Definition at line 1295 of file lua-5.3.6/src/lstrlib.c.
References luaL_addsize, luaL_prepbuffsize(), MC, NB, and SZINT.
Referenced by str_pack().
|
static |
Definition at line 63 of file lua-5.3.6/src/lstrlib.c.
Referenced by str_byte(), str_find_aux(), str_sub(), and str_unpack().
|
static |
Definition at line 591 of file lua-5.3.6/src/lstrlib.c.
References MatchState::L, MatchState::matchdepth, MAXCCALLS, MatchState::p_end, s, MatchState::src_end, and MatchState::src_init.
Referenced by gmatch(), str_find_aux(), and str_gsub().
|
static |
Definition at line 569 of file lua-5.3.6/src/lstrlib.c.
References MatchState::L, MatchState::level, luaL_checkstack(), push_onecapture(), and s.
Referenced by add_value(), gmatch_aux(), and str_find_aux().
|
static |
Definition at line 550 of file lua-5.3.6/src/lstrlib.c.
References CAP_POSITION, CAP_UNFINISHED, MatchState::capture, MatchState::init, MatchState::L, MatchState::len, MatchState::level, lua_pushinteger(), lua_pushlstring(), luaL_error(), s, and MatchState::src_init.
Referenced by add_s(), add_value(), and push_captures().
|
static |
Definition at line 601 of file lua-5.3.6/src/lstrlib.c.
References MatchState::level, lua_assert, MatchState::matchdepth, and MAXCCALLS.
Referenced by gmatch_aux(), str_find_aux(), and str_gsub().
|
static |
Definition at line 981 of file lua-5.3.6/src/lstrlib.c.
References FLAGS, luaL_error(), NULL, and uchar.
Referenced by str_format().
|
static |
Definition at line 325 of file lua-5.3.6/src/lstrlib.c.
References L_ESC, match_class(), matchbracketclass(), s, MatchState::src_end, and uchar.
Referenced by match(), max_expand(), and min_expand().
|
static |
Definition at line 389 of file lua-5.3.6/src/lstrlib.c.
References MatchState::capture, MatchState::init, MatchState::L, MatchState::len, MatchState::level, LUA_MAXCAPTURES, luaL_error(), match(), NULL, and s.
Referenced by match().
|
static |
Definition at line 148 of file lua-5.3.6/src/lstrlib.c.
References lua_pushinteger(), luaL_checklstring(), luaL_checkstack(), luaL_error(), luaL_optinteger(), posrelat(), s, and uchar.
|
static |
Definition at line 167 of file lua-5.3.6/src/lstrlib.c.
References lua_gettop(), luaL_argcheck, luaL_buffinitsize(), luaL_checkinteger(), luaL_pushresultsize(), and uchar.
|
static |
Definition at line 189 of file lua-5.3.6/src/lstrlib.c.
References lua_dump(), lua_settop(), LUA_TFUNCTION, lua_toboolean(), luaL_buffinit(), luaL_checktype(), luaL_error(), luaL_pushresult(), and writer().
|
static |
|
static |
Definition at line 607 of file lua-5.3.6/src/lstrlib.c.
References find(), lmemfind(), lua_pushinteger(), lua_pushnil(), lua_toboolean(), luaL_checklstring(), luaL_optinteger(), match(), nospecials(), NULL, posrelat(), prepstate(), push_captures(), reprepstate(), s, and MatchState::src_end.
Referenced by str_find(), and str_match().
|
static |
Definition at line 1016 of file lua-5.3.6/src/lstrlib.c.
References addlenmod(), addliteral(), arg, L_ESC, l_sprintf, lua_assert, lua_gettop(), lua_number2strx, LUA_NUMBER_FRMLEN, lua_pop, LUAI_UACINT, LUAI_UACNUMBER, luaL_addchar, luaL_addsize, luaL_addvalue(), luaL_argcheck, luaL_argerror(), luaL_buffinit(), luaL_checkinteger(), luaL_checklstring(), luaL_checknumber(), luaL_error(), luaL_prepbuffsize(), luaL_pushresult(), luaL_tolstring(), MAX_FORMAT, MAX_ITEM, s, and scanformat().
|
static |
Definition at line 762 of file lua-5.3.6/src/lstrlib.c.
References add_value(), lua_pushinteger(), LUA_TFUNCTION, LUA_TNUMBER, LUA_TSTRING, LUA_TTABLE, lua_type(), luaL_addchar, luaL_addlstring(), luaL_argcheck, luaL_buffinit(), luaL_checklstring(), luaL_optinteger(), luaL_pushresult(), match(), NULL, prepstate(), reprepstate(), and MatchState::src_end.
|
static |
Definition at line 54 of file lua-5.3.6/src/lstrlib.c.
References lua_pushinteger(), and luaL_checklstring().
|
static |
Definition at line 96 of file lua-5.3.6/src/lstrlib.c.
References luaL_buffinitsize(), luaL_checklstring(), luaL_pushresultsize(), s, and uchar.
|
static |
Definition at line 659 of file lua-5.3.6/src/lstrlib.c.
References str_find_aux().
|
static |
Definition at line 1330 of file lua-5.3.6/src/lstrlib.c.
References arg, Ftypes::buff, copywithendian(), Ftypes::d, Ftypes::f, getdetails(), initheader(), Header::islittle, Kchar, Kfloat, Kint, Knop, Kpaddalign, Kpadding, Kstring, Kuint, Kzstr, lua_pushnil(), luaL_addchar, luaL_addlstring(), luaL_addsize, luaL_argcheck, luaL_buffinit(), luaL_checkinteger(), luaL_checklstring(), luaL_checknumber(), luaL_checkstring, LUAL_PACKPADBYTE, luaL_prepbuffsize(), luaL_pushresult(), Ftypes::n, NB, packint(), s, and SZINT.
|
static |
Definition at line 1417 of file lua-5.3.6/src/lstrlib.c.
References getdetails(), initheader(), Kstring, Kzstr, lua_pushinteger(), luaL_argcheck, luaL_argerror(), luaL_checkstring, and MAXSIZE.
|
static |
Definition at line 122 of file lua-5.3.6/src/lstrlib.c.
References lua_pushliteral, luaL_buffinitsize(), luaL_checkinteger(), luaL_checklstring(), luaL_error(), luaL_optlstring(), luaL_pushresultsize(), MAXSIZE, and s.
|
static |
Definition at line 84 of file lua-5.3.6/src/lstrlib.c.
References luaL_buffinitsize(), luaL_checklstring(), luaL_pushresultsize(), and s.
|
static |
Definition at line 70 of file lua-5.3.6/src/lstrlib.c.
References lua_pushliteral, lua_pushlstring(), luaL_checkinteger(), luaL_checklstring(), luaL_optinteger(), posrelat(), and s.
|
static |
Definition at line 1476 of file lua-5.3.6/src/lstrlib.c.
References Ftypes::buff, copywithendian(), Ftypes::d, Ftypes::f, getdetails(), initheader(), Header::islittle, Kchar, Kfloat, Kint, Knop, Kpaddalign, Kpadding, Kstring, Kuint, Kzstr, lua_pushinteger(), lua_pushlstring(), lua_pushnumber(), luaL_argcheck, luaL_argerror(), luaL_checklstring(), luaL_checkstack(), luaL_checkstring, luaL_optinteger(), Ftypes::n, posrelat(), and unpackint().
|
static |
Definition at line 109 of file lua-5.3.6/src/lstrlib.c.
References luaL_buffinitsize(), luaL_checklstring(), luaL_pushresultsize(), s, and uchar.
|
static |
Definition at line 1450 of file lua-5.3.6/src/lstrlib.c.
References luaL_error(), mask, MC, NB, and SZINT.
Referenced by str_unpack().
|
static |
Definition at line 182 of file lua-5.3.6/src/lstrlib.c.
References luaL_addlstring().
Referenced by str_dump().
int dummy |
Definition at line 1125 of file lua-5.3.6/src/lstrlib.c.
Referenced by convertCompoundSelectToSubquery(), duk__alloc_init_hstring(), duk_hobject_hasprop_raw(), duk_to_int_clamped(), luaK_infix(), luaT_trybinTM(), pagerPlaybackSavepoint(), sqlite3VdbeGetOp(), vdbeIncrPopulate(), and youngcollection().
char little |
Definition at line 1126 of file lua-5.3.6/src/lstrlib.c.
const union { ... } nativeendian |
Referenced by copywithendian(), getoption(), and initheader().
|
static |
Definition at line 1542 of file lua-5.3.6/src/lstrlib.c.
Referenced by luaopen_string().