diff options
author | Kim Alvefur <zash@zash.se> | 2020-10-15 16:26:56 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-10-15 16:26:56 +0200 |
commit | 1c55a0be07b9f6d12fec33ab268daf9f7073ad8a (patch) | |
tree | c6aa61caaccae4e714510d5c90882342c28dc19d /util-src/strbitop.c | |
parent | 9a25dc6d776fb7e01d53036d353fa12c874a64c4 (diff) | |
download | prosody-1c55a0be07b9f6d12fec33ab268daf9f7073ad8a.tar.gz prosody-1c55a0be07b9f6d12fec33ab268daf9f7073ad8a.zip |
util.strbitop: Reformat code
astyle \
--indent=tab \
--attach-classes \
--indent-switches \
--break-blocks \
--pad-oper \
--unpad-paren \
--add-braces \
--align-pointer=name \
--lineend=linux \
*.c
Diffstat (limited to 'util-src/strbitop.c')
-rw-r--r-- | util-src/strbitop.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/util-src/strbitop.c b/util-src/strbitop.c index a26288e5..89fce661 100644 --- a/util-src/strbitop.c +++ b/util-src/strbitop.c @@ -14,11 +14,11 @@ /* TODO Deduplicate code somehow */ -int strop_and(lua_State* L) { +int strop_and(lua_State *L) { luaL_Buffer buf; size_t a, b, i; - const char* str_a = luaL_checklstring(L, 1, &a); - const char* str_b = luaL_checklstring(L, 2, &b); + const char *str_a = luaL_checklstring(L, 1, &a); + const char *str_b = luaL_checklstring(L, 2, &b); luaL_buffinit(L, &buf); @@ -35,11 +35,11 @@ int strop_and(lua_State* L) { return 1; } -int strop_or(lua_State* L) { +int strop_or(lua_State *L) { luaL_Buffer buf; size_t a, b, i; - const char* str_a = luaL_checklstring(L, 1, &a); - const char* str_b = luaL_checklstring(L, 2, &b); + const char *str_a = luaL_checklstring(L, 1, &a); + const char *str_b = luaL_checklstring(L, 2, &b); luaL_buffinit(L, &buf); @@ -56,11 +56,11 @@ int strop_or(lua_State* L) { return 1; } -int strop_xor(lua_State* L) { +int strop_xor(lua_State *L) { luaL_Buffer buf; size_t a, b, i; - const char* str_a = luaL_checklstring(L, 1, &a); - const char* str_b = luaL_checklstring(L, 2, &b); + const char *str_a = luaL_checklstring(L, 1, &a); + const char *str_b = luaL_checklstring(L, 2, &b); luaL_buffinit(L, &buf); |