File: strndup.c

package info (click to toggle)
libtrace3 3.0.7-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,676 kB
  • ctags: 3,140
  • sloc: ansic: 20,551; sh: 10,125; cpp: 1,384; makefile: 415; yacc: 96; lex: 50
file content (77 lines) | stat: -rw-r--r-- 1,850 bytes parent folder | download | duplicates (2)
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
75
76
77
/*
 * This file is part of libtrace
 *
 * Copyright (c) 2007,2008,2009,2010 The University of Waikato, Hamilton, 
 * New Zealand.
 *
 * Authors: Matthew Luckie 
 *          
 * All rights reserved.
 *
 * This code has been developed by the University of Waikato WAND 
 * research group. For further information please see http://www.wand.net.nz/
 *
 * libtrace is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * libtrace is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with libtrace; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * $Id: strndup.c 1635 2010-07-29 12:54:56Z smr26 $
 *
 */

#include "config.h"

#ifndef HAVE_STRNDUP

#include <stdlib.h>
#include <errno.h>
#include <string.h>

#include <libtrace_int.h>

/* Some systems don't include strndup as part of their standard C library, so
 * we need to provide our own version.
 *
 * Full credit to Matthew Luckie, who wrote this particular version and allowed
 * us to borrow it.
 */

char *strndup(const char *s, size_t size)
{
  char   *str;
  size_t  len;

  if(size == 0 || s == NULL)
    {
      errno = EINVAL;
      return NULL;
    }

  if(size > (len = strlen(s)))
    {
      size = len+1;
    }

  if((str = malloc(size)) == NULL)
    {
      errno = ENOMEM;
      return NULL;
    }

  memcpy(str, s, size);
  str[size-1] = '\0';

  return str;
}

#endif