Tizen 2.0 Release
[framework/graphics/cairo.git] / util / cairo-missing / strndup.c
1 /* cairo - a vector graphics library with display and print output
2  *
3  * Copyright © 2006 Red Hat, Inc.
4  * Copyright © 2011 Andrea Canciani
5  *
6  * Permission to use, copy, modify, distribute, and sell this software
7  * and its documentation for any purpose is hereby granted without
8  * fee, provided that the above copyright notice appear in all copies
9  * and that both that copyright notice and this permission notice
10  * appear in supporting documentation, and that the name of the
11  * copyright holders not be used in advertising or publicity
12  * pertaining to distribution of the software without specific,
13  * written prior permission. The copyright holders make no
14  * representations about the suitability of this software for any
15  * purpose.  It is provided "as is" without express or implied
16  * warranty.
17  *
18  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
19  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
20  * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
21  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
22  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
23  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
24  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
25  * SOFTWARE.
26  *
27  * Authors: Carl Worth <cworth@cworth.org>
28  *          Andrea Canciani <ranma42@gmail.com>
29  */
30
31 #include "cairo-missing.h"
32
33 #ifndef HAVE_STRNDUP
34 #include "cairo-malloc-private.h"
35
36 char *
37 strndup (const char *s,
38          size_t      n)
39 {
40     size_t len;
41     char *sdup;
42
43     if (s == NULL)
44         return NULL;
45
46     len = strlen (s);
47     if (len > n)
48         len = n;
49     sdup = (char *) _cairo_malloc (len + 1);
50     if (sdup != NULL) {
51         memcpy (sdup, s, len);
52         sdup[len] = '\0';
53     }
54
55     return sdup;
56 }
57 #endif