mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
Back out 6dde2c9fa272: Doesn't work on Lua 5.1
This commit is contained in:
parent
9b8a54345f
commit
bad47be8f9
1 changed files with 6 additions and 13 deletions
|
@ -2,7 +2,7 @@
|
||||||
* This project is MIT licensed. Please see the
|
* This project is MIT licensed. Please see the
|
||||||
* COPYING file in the source package for more information.
|
* COPYING file in the source package for more information.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2016-2020 Kim Alvefur
|
* Copyright (C) 2016 Kim Alvefur
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <lua.h>
|
#include <lua.h>
|
||||||
|
@ -25,13 +25,10 @@ int strop_and(lua_State *L) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *cbuf = luaL_buffinitsize(L, &buf, a);
|
|
||||||
|
|
||||||
for(i = 0; i < a; i++) {
|
for(i = 0; i < a; i++) {
|
||||||
cbuf[i] = str_a[i] & str_b[i % b];
|
luaL_addchar(&buf, str_a[i] & str_b[i % b]);
|
||||||
}
|
}
|
||||||
|
|
||||||
luaL_addsize(&buf, a);
|
|
||||||
luaL_pushresult(&buf);
|
luaL_pushresult(&buf);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -47,13 +44,10 @@ int strop_or(lua_State *L) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *cbuf = luaL_buffinitsize(L, &buf, a);
|
|
||||||
|
|
||||||
for(i = 0; i < a; i++) {
|
for(i = 0; i < a; i++) {
|
||||||
cbuf[i] = str_a[i] | str_b[i % b];
|
luaL_addchar(&buf, str_a[i] | str_b[i % b]);
|
||||||
}
|
}
|
||||||
|
|
||||||
luaL_addsize(&buf, a);
|
|
||||||
luaL_pushresult(&buf);
|
luaL_pushresult(&buf);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -64,18 +58,17 @@ int strop_xor(lua_State *L) {
|
||||||
const char *str_a = luaL_checklstring(L, 1, &a);
|
const char *str_a = luaL_checklstring(L, 1, &a);
|
||||||
const char *str_b = luaL_checklstring(L, 2, &b);
|
const char *str_b = luaL_checklstring(L, 2, &b);
|
||||||
|
|
||||||
|
luaL_buffinit(L, &buf);
|
||||||
|
|
||||||
if(a == 0 || b == 0) {
|
if(a == 0 || b == 0) {
|
||||||
lua_settop(L, 1);
|
lua_settop(L, 1);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *cbuf = luaL_buffinitsize(L, &buf, a);
|
|
||||||
|
|
||||||
for(i = 0; i < a; i++) {
|
for(i = 0; i < a; i++) {
|
||||||
cbuf[i] = str_a[i] ^ str_b[i % b];
|
luaL_addchar(&buf, str_a[i] ^ str_b[i % b]);
|
||||||
}
|
}
|
||||||
|
|
||||||
luaL_addsize(&buf, a);
|
|
||||||
luaL_pushresult(&buf);
|
luaL_pushresult(&buf);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue