diff options
Diffstat (limited to 'extern')
-rw-r--r-- | extern/concat.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/extern/concat.h b/extern/concat.h deleted file mode 100644 index 0f3be99..0000000 --- a/extern/concat.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Thanks to lloyd for contribution - */ - -extern char concat[8192]; - -extern void -ccat(const unsigned short int count, ...) -{ - va_list ap; - unsigned short int i; - concat[0] = '\0'; - - if (count == 0) - return; - - va_start(ap, count); - for(i = 0; i < count; i++) - strlcat(concat, va_arg(ap, char *), sizeof(concat)); - va_end(ap); - return; -} |