blob: cf0d45d1b66270ad78f7a79a71c22d78b24a7efe (
plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
|
/*++
/* NAME
/* concatenate 3
/* SUMMARY
/* concatenate strings
/* SYNOPSIS
/* #include <stringops.h>
/*
/* char *concatenate(str, ...)
/* const char *str;
/* DESCRIPTION
/* The \fBconcatenate\fR routine concatenates a null-terminated
/* list of pointers to null-terminated character strings.
/* The result is dynamically allocated and should be passed to myfree()
/* when no longer needed.
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*--*/
/* System library. */
#include <sys_defs.h>
#include <stdlib.h> /* 44BSD stdarg.h uses abort() */
#include <stdarg.h>
#include <string.h>
/* Utility library. */
#include "mymalloc.h"
#include "stringops.h"
/* concatenate - concatenate null-terminated list of strings */
char *concatenate(const char *arg0,...)
{
char *result;
va_list ap;
int len;
char *arg;
/*
* Compute the length of the resulting string.
*/
va_start(ap, arg0);
len = strlen(arg0);
while ((arg = va_arg(ap, char *)) != 0)
len += strlen(arg);
va_end(ap);
/*
* Build the resulting string. Don't care about wasting a CPU cycle.
*/
result = mymalloc(len + 1);
va_start(ap, arg0);
strcpy(result, arg0);
while ((arg = va_arg(ap, char *)) != 0)
strcat(result, arg);
va_end(ap);
return (result);
}
|