File: strdup.c

package info (click to toggle)
sharutils 1%3A4.15.2-5
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 11,000 kB
  • sloc: ansic: 53,545; sh: 6,933; makefile: 726; yacc: 291; sed: 16
file content (22 lines) | stat: -rw-r--r-- 310 bytes parent folder | download | duplicates (33)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Platforms without strdup ?!?!?!
 */

static char *
strdup( char const *s );

static char *
strdup( char const *s )
{
    char *cp;

    if (s == NULL)
        return NULL;

    cp = (char *) AGALOC((unsigned) (strlen(s)+1), "strdup");

    if (cp != NULL)
        (void) strcpy(cp, s);

    return cp;
}