summaryrefslogtreecommitdiff
path: root/core/src/xmake/libc/setbyte.c
diff options
context:
space:
mode:
authorruki <[email protected]>2025-11-09 19:11:32 +0800
committerruki <[email protected]>2025-11-09 19:44:18 +0800
commitc89c94bf89e98c8e42e786aacc0b334a57474179 (patch)
tree60b4964d58a5289e1444b2375ec5db1a93eccdd6 /core/src/xmake/libc/setbyte.c
parent3f9c6f27ee8f99d5c4393433e8863fec93da43e7 (diff)
format code
Diffstat (limited to 'core/src/xmake/libc/setbyte.c')
-rw-r--r--core/src/xmake/libc/setbyte.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/core/src/xmake/libc/setbyte.c b/core/src/xmake/libc/setbyte.c
index 5dd77396c..7ae959014 100644
--- a/core/src/xmake/libc/setbyte.c
+++ b/core/src/xmake/libc/setbyte.c
@@ -22,8 +22,8 @@
/* //////////////////////////////////////////////////////////////////////////////////////
* trace
*/
-#define TB_TRACE_MODULE_NAME "setbyte"
-#define TB_TRACE_MODULE_DEBUG (0)
+#define TB_TRACE_MODULE_NAME "setbyte"
+#define TB_TRACE_MODULE_DEBUG (0)
/* //////////////////////////////////////////////////////////////////////////////////////
* includes
@@ -33,8 +33,7 @@
/* //////////////////////////////////////////////////////////////////////////////////////
* implementation
*/
-tb_int_t xm_libc_setbyte(lua_State* lua)
-{
+tb_int_t xm_libc_setbyte(lua_State *lua) {
// check
tb_assert_and_check_return_val(lua, 0);
@@ -44,19 +43,20 @@ tb_int_t xm_libc_setbyte(lua_State* lua)
data = (tb_pointer_t)(tb_size_t)lua_tointeger(lua, 1);
else if (lua_isstring(lua, 1))
data = (tb_pointer_t)luaL_checkstring(lua, 1);
- else xm_libc_return_error(lua, "libc.setbyte(invalid data)!");
+ else
+ xm_libc_return_error(lua, "libc.setbyte(invalid data)!");
// get offset
tb_int_t offset = 0;
if (lua_isnumber(lua, 2))
offset = (tb_int_t)lua_tointeger(lua, 2);
- else xm_libc_return_error(lua, "libc.setbyte(invalid offset)!");
+ else
+ xm_libc_return_error(lua, "libc.setbyte(invalid offset)!");
// set byte
if (lua_isnumber(lua, 3))
- ((tb_byte_t*)data)[offset] = (tb_byte_t)lua_tointeger(lua, 3);
- else xm_libc_return_error(lua, "libc.setbyte(invalid value)!");
+ ((tb_byte_t *)data)[offset] = (tb_byte_t)lua_tointeger(lua, 3);
+ else
+ xm_libc_return_error(lua, "libc.setbyte(invalid value)!");
return 0;
}
-
-