File: strconcat.c

package info (click to toggle)
c2man 2.41-14
  • links: PTS
  • area: main
  • in suites: woody
  • size: 800 kB
  • ctags: 875
  • sloc: ansic: 6,559; sh: 5,235; yacc: 839; lex: 621; makefile: 260; perl: 81
file content (74 lines) | stat: -rw-r--r-- 1,428 bytes parent folder | download | duplicates (6)
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
68
69
70
71
72
73
74
/* $Id: strconcat.c,v 2.0.1.1 1993/05/17 02:12:09 greyham Exp $
 * concatenate a list of strings, storing them in a malloc'ed region
 */
#include "c2man.h"
#include "strconcat.h"

#ifdef I_STDARG
#include <stdarg.h>
#endif
#ifdef I_VARARGS
#include <varargs.h>
#endif

extern void outmem();

#ifdef I_STDARG
char *strconcat(const char *first, ...)
#else
char *strconcat(va_alist)
    va_dcl
#endif
{
    size_t totallen;
    va_list argp;
    char *s, *retstring;
#ifndef I_STDARG
    char *first;
#endif    
    /* add up the total length */
#ifdef I_STDARG
    va_start(argp,first);
#else
    va_start(argp);
    first = va_arg(argp, char *);
#endif
#ifdef DEBUG
    fprintf(stderr,"strconcat: \"%s\"",first);
#endif
    totallen = strlen(first);
    while ((s = va_arg(argp,char *)) != NULL)
    {
	totallen += strlen(s);
#ifdef DEBUG
	fprintf(stderr,",\"%s\"",s);
#endif
    }
#ifdef DEBUG
    fprintf(stderr,"\nstrlen = %ld\n",(long)totallen);
#endif
    va_end(argp);
    
    /* malloc the memory */
    if ((retstring = malloc(totallen + 1)) == 0)
	outmem();
	
#ifdef I_STDARG
    va_start(argp,first);
#else
    va_start(argp);
    first = va_arg(argp, char *);
#endif
    /* copy the stuff in */
    strcpy(retstring,first);

    while ((s = va_arg(argp,char *)) != NULL)
	strcat(retstring,s);

    va_end(argp);

#ifdef DEBUG
    fprintf(stderr,"strconcat returns \"%s\"\n",retstring);
#endif
    return retstring;
}