aboutsummaryrefslogtreecommitdiffstats
path: root/testing/lua5.2-stringy/stringy-memcmp.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2013-06-25 10:54:09 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2013-06-25 10:55:24 +0000
commit9af31e5c7840e276a65f5a4b341c88831eb9ab97 (patch)
tree121776d2babf739094d66651a3723c71c6fb2d62 /testing/lua5.2-stringy/stringy-memcmp.patch
parent8c8c4ac14ccec5762e1bf1d9a19db8301f47e0bc (diff)
downloadaports-9af31e5c7840e276a65f5a4b341c88831eb9ab97.tar.bz2
aports-9af31e5c7840e276a65f5a4b341c88831eb9ab97.tar.xz
testing/lua5.2-stringy: new aport
Lua string utility library https://code.google.com/p/bpbio/downloads/list
Diffstat (limited to 'testing/lua5.2-stringy/stringy-memcmp.patch')
-rw-r--r--testing/lua5.2-stringy/stringy-memcmp.patch64
1 files changed, 64 insertions, 0 deletions
diff --git a/testing/lua5.2-stringy/stringy-memcmp.patch b/testing/lua5.2-stringy/stringy-memcmp.patch
new file mode 100644
index 0000000000..d9019b79cc
--- /dev/null
+++ b/testing/lua5.2-stringy/stringy-memcmp.patch
@@ -0,0 +1,64 @@
+--- ./stringy.c.orig
++++ ./stringy.c
+@@ -8,49 +8,27 @@
+
+
+ static int endswith(lua_State *L) {
+- const char *string = luaL_checkstring(L, 1);
+- int string_len = lua_objlen(L, 1);
++ size_t string_len, token_len;
++ const char *string = luaL_checklstring(L, 1, &string_len);
++ const char *token = luaL_checklstring(L, 2, &token_len);
++ int end = 0;
+
+- const char *token = luaL_checkstring(L, 2);
+- int token_len = lua_objlen(L, 2);
+-
+- int ti = token_len, si = string_len, end = 1;
+ if(token_len <= string_len){
+- while(ti > 0) {
+- if(string[--si] != token[--ti]){
+- end = 0;
+- break;
+-
+- }
+- }
++ string += string_len - token_len;
++ end = memcmp(string, token, token_len) == 0;
+ }
+- else {
+- end = 0;
+- }
+ lua_pushboolean(L, end);
+ return 1;
+ }
+
+ static int startswith(lua_State *L) {
+- const char *string = luaL_checkstring(L, 1);
+- int string_len = lua_objlen(L, 1);
++ size_t string_len, token_len;
++ const char *string = luaL_checklstring(L, 1, &string_len);
++ const char *token = luaL_checklstring(L, 2, &token_len);
++ int start = 0;
+
+- const char *token = luaL_checkstring(L, 2);
+- int token_len = lua_objlen(L, 2);
+- int i, start = 1;
+- // please make this less ugly...
+- if(token_len <= string_len){
+- while(i < token_len) {
+- if(string[i] != token[i]){
+- start = 0;
+- break;
+- }
+- i++;
+- }
+- }
+- else {
+- start = 0;
+- }
++ if(token_len <= string_len)
++ start = memcmp(string, token, token_len) == 0;
+ lua_pushboolean(L, start);
+ return 1;
+ }