diff options
| author | ruki <[email protected]> | 2021-09-21 00:35:04 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2021-09-21 00:35:04 +0800 |
| commit | de47ad0121ca4155777005976b05debeda67aca6 (patch) | |
| tree | 0cb535481ec2f4522ed73f73b663d30e40a054b5 /core/src | |
| parent | 6bd955fbacc03792d8b36dffa087967e9e056e31 (diff) | |
add byteof
Diffstat (limited to 'core/src')
| -rw-r--r-- | core/src/xmake/engine.c | 2 | ||||
| -rw-r--r-- | core/src/xmake/libc/byteof.c | 58 | ||||
| -rw-r--r-- | core/src/xmake/makefile | 1 |
3 files changed, 61 insertions, 0 deletions
diff --git a/core/src/xmake/engine.c b/core/src/xmake/engine.c index f7d5a1c20..e4ac9f0f5 100644 --- a/core/src/xmake/engine.c +++ b/core/src/xmake/engine.c @@ -230,6 +230,7 @@ tb_int_t xm_libc_strndup(lua_State* lua); tb_int_t xm_libc_dataptr(lua_State* lua); tb_int_t xm_libc_ptraddr(lua_State* lua); tb_int_t xm_libc_diffptr(lua_State* lua); +tb_int_t xm_libc_byteof(lua_State* lua); #ifdef XM_CONFIG_API_HAVE_CURSES // register curses @@ -433,6 +434,7 @@ static luaL_Reg const g_libc_functions[] = , { "dataptr", xm_libc_dataptr } , { "ptraddr", xm_libc_ptraddr } , { "diffptr", xm_libc_diffptr } +, { "byteof", xm_libc_byteof } , { tb_null, tb_null } }; diff --git a/core/src/xmake/libc/byteof.c b/core/src/xmake/libc/byteof.c new file mode 100644 index 000000000..9d0031559 --- /dev/null +++ b/core/src/xmake/libc/byteof.c @@ -0,0 +1,58 @@ +/*!A cross-platform build utility based on Lua + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * Copyright (C) 2015-present, TBOOX Open Source Group. + * + * @author ruki + * @file byteof.c + * + */ + +/* ////////////////////////////////////////////////////////////////////////////////////// + * trace + */ +#define TB_TRACE_MODULE_NAME "byteof" +#define TB_TRACE_MODULE_DEBUG (0) + +/* ////////////////////////////////////////////////////////////////////////////////////// + * includes + */ +#include "prefix.h" + +/* ////////////////////////////////////////////////////////////////////////////////////// + * implementation + */ +tb_int_t xm_libc_byteof(lua_State* lua) +{ + // check + tb_assert_and_check_return_val(lua, 0); + + // get data + tb_pointer_t data = tb_null; + if (xm_lua_ispointer(lua, 1)) + data = (tb_pointer_t)xm_lua_topointer(lua, 1); + else if (lua_isstring(lua, 1)) + data = (tb_pointer_t)luaL_checkstring(lua, 1); + else xm_libc_return_error(lua, "libc.byteof(invalid data)!"); + + // get offset + tb_int_t offset = 0; + if (lua_isnumber(lua, 2)) + offset = (tb_int_t)lua_tonumber(lua, 2); + else xm_libc_return_error(lua, "libc.byteof(invalid offset)!"); + lua_pushinteger(lua, ((tb_byte_t const*)data)[offset]); + return 1; +} + + diff --git a/core/src/xmake/makefile b/core/src/xmake/makefile index b766b272d..a37003b37 100644 --- a/core/src/xmake/makefile +++ b/core/src/xmake/makefile @@ -123,6 +123,7 @@ xmake_C_FILES += \ libc/dataptr \ libc/ptraddr \ libc/diffptr \ + libc/byteof \ libc/strndup iswin = |
