added daemonization support

This commit is contained in:
Ali H. Fardan
2016-09-04 00:10:49 +03:00
parent de4f20ace3
commit d3d8b8ee03
3 changed files with 146 additions and 28 deletions

19
concat.h Normal file

@ -0,0 +1,19 @@
/*
* Thanks to lloyd for contribution
*/
extern char concat[4096];
extern void
ccat(const unsigned short int count, ...)
{
va_list ap;
unsigned short int i;
concat[0] = '\0';
va_start(ap, count);
for(i = 0; i < count; i++)
strlcat(concat, va_arg(ap, char *), sizeof(concat));
va_end(ap);
return;
}