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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
/*
* Copyright (C) 2001-2004 Michael H. Schimek
* Copyright (C) 2000-2003 Iaki Garca Etxebarria
*
* This program 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.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: misc.c,v 1.2 2005/01/27 04:20:19 mschimek Exp $ */
#include <stdlib.h> /* malloc() */
#include "misc.h"
#ifndef HAVE_STRLCPY
/**
* @internal
* strlcpy() is a BSD/GNU extension.
*/
size_t
_tv_strlcpy (char * dst,
const char * src,
size_t len)
{
char *dst1;
char *end;
char c;
assert (NULL != dst);
assert (NULL != src);
assert (len > 0);
dst1 = dst;
end = dst + len - 1;
while (dst < end && (c = *src++))
*dst++ = c;
*dst = 0;
return dst - dst1;
}
#endif /* !HAVE_STRLCPY */
#ifndef HAVE_STRNDUP
/**
* @internal
* strndup() is a BSD/GNU extension.
*/
char *
_tv_strndup (const char * s,
size_t len)
{
size_t n;
char *r;
if (NULL == s)
return NULL;
n = strlen (s);
len = MIN (len, n);
r = malloc (len + 1);
if (r) {
memcpy (r, s, len);
r[len] = 0;
}
return r;
}
#endif /* !HAVE_STRNDUP */
#ifndef HAVE_ASPRINTF
/**
* @internal
* asprintf() is a GNU extension.
*/
int
_tv_asprintf (char ** dstp,
const char * templ,
...)
{
char *buf;
int size;
int temp;
assert (NULL != dstp);
assert (NULL != templ);
temp = errno;
buf = NULL;
size = 64;
for (;;) {
va_list ap;
char *buf2;
int len;
if (!(buf2 = realloc (buf, size)))
break;
buf = buf2;
va_start (ap, templ);
len = vsnprintf (buf, size, templ, ap);
va_end (ap);
if (len < 0) {
/* Not enough. */
size *= 2;
} else if (len < size) {
*dstp = buf;
errno = temp;
return len;
} else {
/* Size needed. */
size = len + 1;
}
}
free (buf);
*dstp = NULL;
errno = temp;
return -1;
}
#endif /* !HAVE_ASPRINTF */
|