summaryrefslogtreecommitdiff
path: root/core/src/xmake/libc/byteof.c
diff options
context:
space:
mode:
authorruki <[email protected]>2025-11-09 23:22:44 +0800
committerruki <[email protected]>2025-11-09 23:22:44 +0800
commit831447a51da0b094e08bb047247bf269a6e6cf71 (patch)
treef345e66e3d9882cbb4d49d588c3080d88bc17cd8 /core/src/xmake/libc/byteof.c
parentbf2da8a3d7f04bf5ffcdce8fd4c334d5421d3494 (diff)
format more if-else
Diffstat (limited to 'core/src/xmake/libc/byteof.c')
-rw-r--r--core/src/xmake/libc/byteof.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/core/src/xmake/libc/byteof.c b/core/src/xmake/libc/byteof.c
index dac772e9b..1d49bf815 100644
--- a/core/src/xmake/libc/byteof.c
+++ b/core/src/xmake/libc/byteof.c
@@ -38,19 +38,21 @@ tb_int_t xm_libc_byteof(lua_State *lua) {
// get data
tb_pointer_t data = tb_null;
- if (lua_isnumber(lua, 1))
+ if (lua_isnumber(lua, 1)) {
data = (tb_pointer_t)(tb_size_t)lua_tointeger(lua, 1);
- else if (lua_isstring(lua, 1))
+ } else if (lua_isstring(lua, 1)) {
data = (tb_pointer_t)luaL_checkstring(lua, 1);
- else
+ } else {
xm_libc_return_error(lua, "libc.byteof(invalid data)!");
+ }
// get offset
tb_int_t offset = 0;
- if (lua_isnumber(lua, 2))
+ if (lua_isnumber(lua, 2)) {
offset = (tb_int_t)lua_tointeger(lua, 2);
- else
+ } else {
xm_libc_return_error(lua, "libc.byteof(invalid offset)!");
+ }
lua_pushinteger(lua, ((tb_byte_t const *)data)[offset]);
return 1;
}