1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
static char *str_concat (char *cs,...)
{
char *s = NULL;
size_t size = 1;
{
const char *ct;
va_list va;
va_start (va, cs);
while ((ct = va_arg (va, char *)) != NULL)
{
size += strlen (ct);
}
va_end (va);
}
printf ("size = %lu\n", (unsigned long) size);
s = malloc (size);
if (s == NULL)
{
printf ("in str_concat : malloc() failed.\n");
}
else
{
const char *ct;
va_list va;
va_start (va, cs);
strcpy (s, cs);
while ((ct = va_arg (va, char *)) != NULL)
{
strcat (s, ct);
}
va_end (va);
}
return s;
}
int main ()
{
char *s = str_concat ("a", "bc", "def", NULL);
if (s != NULL)
{
printf ("'%s'\n", s);
free (s), s = NULL;
}
return 0;
} |
Partager