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.tar.gz
rockbox-cc0a4c632aeda82ab4517355b4b4489190da013e.zip
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 147397440a..0000000000
--- a/apps/plugins/lua/strncat.c
+++ /dev/null
@@ -1,37 +0,0 @@
1#include "rocklibc.h"
2
3/* gcc is broken and has a non-SUSv2 compliant internal prototype.
4 * This causes it to warn about a type mismatch here. Ignore it. */
5char *strncat(char *s, const char *t, size_t n) {
6 char *dest=s;
7 register char *max;
8 s+=strlen(s);
9 if (__unlikely((max=s+n)==s)) goto fini;
10 for (;;) {
11 if (__unlikely(!(*s = *t)))
12 break;
13 if (__unlikely(++s==max))
14 break;
15 ++t;
16#ifndef WANT_SMALL_STRING_ROUTINES
17 if (__unlikely(!(*s = *t)))
18 break;
19 if (__unlikely(++s==max))
20 break;
21 ++t;
22 if (__unlikely(!(*s = *t)))
23 break;
24 if (__unlikely(++s==max))
25 break;
26 ++t;
27 if (__unlikely(!(*s = *t)))
28 break;
29 if (__unlikely(++s==max))
30 break;
31 ++t;
32#endif
33 }
34 *s=0;
35fini:
36 return dest;
37}