about summary refs log tree commit diff
path: root/src/portab/strdup.c
blob: e735157043084d633e84ff7a9b578bca4e832a12 (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
/*
 * ngIRCd -- The Next Generation IRC Daemon
 *
 * strdup() implementation.  Public domain.
 *
 * $Id: strdup.c,v 1.1 2005/04/16 09:20:53 fw Exp $
 */

#include "portab.h"

#include "imp.h"
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>

#include "exp.h"

#ifndef HAVE_STRDUP

GLOBAL char *
strdup( const char *s )
{
 char *dup;
 size_t len = strlen( s );
 size_t alloc = len + 1;

 if (len >= alloc ) return NULL;
 dup = malloc( alloc );
 if (dup) strlcpy(dup, s, alloc );

return dup;
}

#endif