Github User Fetcher 1.0.0
C Application with Server and GUI
|
#include "lprefix.h"
#include <assert.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"
Go to the source code of this file.
Macros | |
#define | lutf8lib_c |
#define | LUA_LIB |
#define | MAXUNICODE 0x10FFFFu |
#define | MAXUTF 0x7FFFFFFFu |
#define | iscont(p) ((*(p) & 0xC0) == 0x80) |
#define | UTF8PATT "[\0-\x7F\xC2-\xFD][\x80-\xBF]*" |
Typedefs | |
typedef unsigned long | utfint |
Functions | |
static lua_Integer | u_posrelat (lua_Integer pos, size_t len) |
static const char * | utf8_decode (const char *s, utfint *val, int strict) |
static int | utflen (lua_State *L) |
static int | codepoint (lua_State *L) |
static void | pushutfchar (lua_State *L, int arg) |
static int | utfchar (lua_State *L) |
static int | byteoffset (lua_State *L) |
static int | iter_aux (lua_State *L, int strict) |
static int | iter_auxstrict (lua_State *L) |
static int | iter_auxlax (lua_State *L) |
static int | iter_codes (lua_State *L) |
LUAMOD_API int | luaopen_utf8 (lua_State *L) |
Variables | |
static const luaL_Reg | funcs [] |
#define iscont | ( | p | ) | ((*(p) & 0xC0) == 0x80) |
Definition at line 38 of file lua-5.4.3/src/lutf8lib.c.
Referenced by byteoffset(), and iter_aux().
#define LUA_LIB |
Definition at line 8 of file lua-5.4.3/src/lutf8lib.c.
#define lutf8lib_c |
Definition at line 7 of file lua-5.4.3/src/lutf8lib.c.
#define MAXUNICODE 0x10FFFFu |
Definition at line 24 of file lua-5.4.3/src/lutf8lib.c.
Referenced by utf8_decode().
#define MAXUTF 0x7FFFFFFFu |
Definition at line 26 of file lua-5.4.3/src/lutf8lib.c.
Referenced by pushutfchar(), and utf8_decode().
#define UTF8PATT "[\0-\x7F\xC2-\xFD][\x80-\xBF]*" |
Definition at line 268 of file lua-5.4.3/src/lutf8lib.c.
Referenced by luaopen_utf8().
typedef unsigned long utfint |
Definition at line 34 of file lua-5.4.3/src/lutf8lib.c.
|
static |
Definition at line 183 of file lua-5.4.3/src/lutf8lib.c.
References iscont, lua_pushinteger(), luaL_argcheck, luaL_checkinteger(), luaL_checklstring(), luaL_error(), luaL_optinteger(), luaL_pushfail, s, and u_posrelat().
|
static |
Definition at line 122 of file lua-5.4.3/src/lutf8lib.c.
References lua_pushinteger(), lua_toboolean(), luaL_argcheck, luaL_checklstring(), luaL_checkstack(), luaL_error(), luaL_optinteger(), NULL, s, u_posrelat(), and utf8_decode().
|
static |
Definition at line 224 of file lua-5.4.3/src/lutf8lib.c.
References iscont, lua_pushinteger(), lua_tointeger, luaL_checklstring(), luaL_error(), next, NULL, s, and utf8_decode().
Referenced by iter_auxlax(), and iter_auxstrict().
|
static |
Definition at line 252 of file lua-5.4.3/src/lutf8lib.c.
References iter_aux().
Referenced by iter_codes().
|
static |
Definition at line 248 of file lua-5.4.3/src/lutf8lib.c.
References iter_aux().
Referenced by iter_codes().
|
static |
Definition at line 257 of file lua-5.4.3/src/lutf8lib.c.
References iter_auxlax(), iter_auxstrict(), lua_pushcfunction, lua_pushinteger(), lua_pushvalue(), lua_toboolean(), and luaL_checkstring.
LUAMOD_API int luaopen_utf8 | ( | lua_State * | L | ) |
Definition at line 283 of file lua-5.4.3/src/lutf8lib.c.
References funcs, funcs, lua_pushlstring(), lua_setfield(), luaL_newlib, and UTF8PATT.
|
static |
Definition at line 151 of file lua-5.4.3/src/lutf8lib.c.
References arg, lua_pushfstring(), luaL_argcheck, luaL_checkinteger(), and MAXUTF.
Referenced by utfchar().
|
static |
Definition at line 43 of file lua-5.4.3/src/lutf8lib.c.
Referenced by byteoffset(), codepoint(), and utflen().
|
static |
Definition at line 57 of file lua-5.4.3/src/lutf8lib.c.
References MAXUNICODE, MAXUTF, NULL, and s.
Referenced by codepoint(), iter_aux(), and utflen().
|
static |
Definition at line 161 of file lua-5.4.3/src/lutf8lib.c.
References lua_gettop(), luaL_addvalue(), luaL_buffinit(), luaL_pushresult(), and pushutfchar().
|
static |
Definition at line 92 of file lua-5.4.3/src/lutf8lib.c.
References lua_pushinteger(), lua_toboolean(), luaL_argcheck, luaL_checklstring(), luaL_optinteger(), luaL_pushfail, NULL, s, u_posrelat(), and utf8_decode().
|
static |
Definition at line 271 of file lua-5.4.3/src/lutf8lib.c.
Referenced by luaopen_utf8().