summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/strncat.c
diff options
context:
space:
mode:
authorWilliam Wilgus <me.theuser@yahoo.com>2018-10-28 13:21:42 -0400
committerWilliam Wilgus <me.theuser@yahoo.com>2018-10-30 04:17:06 +0100
commitcc0a4c632aeda82ab4517355b4b4489190da013e (patch)
tree49d40380d8a48c5b374a2bd63b53a73c443bf2e3 /apps/plugins/lua/strncat.c
parentdf8233e4abbd0d626158abc5388957cc28b06c50 (diff)
downloadrockbox-cc0a4c632aeda82ab4517355b4b4489190da013e.zip
rockbox-cc0a4c632aeda82ab4517355b4b4489190da013e.tar.gz
rockbox-cc0a4c632aeda82ab4517355b4b4489190da013e.tar.bz2
rockbox-cc0a4c632aeda82ab4517355b4b4489190da013e.tar.xz
Lua remove strncat.c & strcspn.c
Change-Id: I08256f31e733d2674054e8e589d539d1396a0ee6
Diffstat (limited to 'apps/plugins/lua/strncat.c')
-rw-r--r--apps/plugins/lua/strncat.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/apps/plugins/lua/strncat.c b/apps/plugins/lua/strncat.c
deleted file mode 100644
index 1473974..0000000
--- a/apps/plugins/lua/strncat.c
+++ /dev/null
@@ -1,37 +0,0 @@
-#include "rocklibc.h"
-
-/* gcc is broken and has a non-SUSv2 compliant internal prototype.
- * This causes it to warn about a type mismatch here. Ignore it. */
-char *strncat(char *s, const char *t, size_t n) {
- char *dest=s;
- register char *max;
- s+=strlen(s);
- if (__unlikely((max=s+n)==s)) goto fini;
- for (;;) {
- if (__unlikely(!(*s = *t)))
- break;
- if (__unlikely(++s==max))
- break;
- ++t;
-#ifndef WANT_SMALL_STRING_ROUTINES
- if (__unlikely(!(*s = *t)))
- break;
- if (__unlikely(++s==max))
- break;
- ++t;
- if (__unlikely(!(*s = *t)))
- break;
- if (__unlikely(++s==max))
- break;
- ++t;
- if (__unlikely(!(*s = *t)))
- break;
- if (__unlikely(++s==max))
- break;
- ++t;
-#endif
- }
- *s=0;
-fini:
- return dest;
-}