xref: /freebsd/contrib/dma/dfcompat.c (revision fbe95b885f3431b1d8003545b32e8ffa88f2d16b)
1a9e8641dSBaptiste Daroussin #ifndef HAVE_STRLCPY
2a9e8641dSBaptiste Daroussin 
3a9e8641dSBaptiste Daroussin /*
4a9e8641dSBaptiste Daroussin  * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
5a9e8641dSBaptiste Daroussin  *
6a9e8641dSBaptiste Daroussin  * Permission to use, copy, modify, and distribute this software for any
7a9e8641dSBaptiste Daroussin  * purpose with or without fee is hereby granted, provided that the above
8a9e8641dSBaptiste Daroussin  * copyright notice and this permission notice appear in all copies.
9a9e8641dSBaptiste Daroussin  *
10a9e8641dSBaptiste Daroussin  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11a9e8641dSBaptiste Daroussin  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12a9e8641dSBaptiste Daroussin  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13a9e8641dSBaptiste Daroussin  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14a9e8641dSBaptiste Daroussin  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15a9e8641dSBaptiste Daroussin  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16a9e8641dSBaptiste Daroussin  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17a9e8641dSBaptiste Daroussin  *
18a9e8641dSBaptiste Daroussin  * $OpenBSD: strlcpy.c,v 1.11 2006/05/05 15:27:38 millert Exp $
19*fbe95b88SBaptiste Daroussin  * $FreeBSD: src/lib/libc/string/strlcpy.c,v 1.10 2008/10/19 10:11:35 delphij Exp $
20a9e8641dSBaptiste Daroussin  * $DragonFly: src/lib/libc/string/strlcpy.c,v 1.4 2005/09/18 16:32:34 asmodai Exp $
21a9e8641dSBaptiste Daroussin  */
22a9e8641dSBaptiste Daroussin 
23a9e8641dSBaptiste Daroussin #include "dfcompat.h"
24a9e8641dSBaptiste Daroussin 
25a9e8641dSBaptiste Daroussin #include <sys/types.h>
26a9e8641dSBaptiste Daroussin #include <string.h>
27a9e8641dSBaptiste Daroussin 
28a9e8641dSBaptiste Daroussin /*
29a9e8641dSBaptiste Daroussin  * Copy src to string dst of size siz.  At most siz-1 characters
30a9e8641dSBaptiste Daroussin  * will be copied.  Always NUL terminates (unless siz == 0).
31a9e8641dSBaptiste Daroussin  * Returns strlen(src); if retval >= siz, truncation occurred.
32a9e8641dSBaptiste Daroussin  */
33a9e8641dSBaptiste Daroussin size_t
strlcpy(char * dst,const char * src,size_t siz)34a9e8641dSBaptiste Daroussin strlcpy(char *dst, const char *src, size_t siz)
35a9e8641dSBaptiste Daroussin {
36a9e8641dSBaptiste Daroussin 	char *d = dst;
37a9e8641dSBaptiste Daroussin 	const char *s = src;
38a9e8641dSBaptiste Daroussin 	size_t n = siz;
39a9e8641dSBaptiste Daroussin 
40a9e8641dSBaptiste Daroussin 	/* Copy as many bytes as will fit */
41a9e8641dSBaptiste Daroussin 	if (n != 0) {
42a9e8641dSBaptiste Daroussin 		while (--n != 0) {
43a9e8641dSBaptiste Daroussin 			if ((*d++ = *s++) == '\0')
44a9e8641dSBaptiste Daroussin 				break;
45a9e8641dSBaptiste Daroussin 		}
46a9e8641dSBaptiste Daroussin 	}
47a9e8641dSBaptiste Daroussin 
48a9e8641dSBaptiste Daroussin 	/* Not enough room in dst, add NUL and traverse rest of src */
49a9e8641dSBaptiste Daroussin 	if (n == 0) {
50a9e8641dSBaptiste Daroussin 		if (siz != 0)
51a9e8641dSBaptiste Daroussin 			*d = '\0';		/* NUL-terminate dst */
52a9e8641dSBaptiste Daroussin 		while (*s++)
53a9e8641dSBaptiste Daroussin 			;
54a9e8641dSBaptiste Daroussin 	}
55a9e8641dSBaptiste Daroussin 
56a9e8641dSBaptiste Daroussin 	return(s - src - 1);	/* count does not include NUL */
57a9e8641dSBaptiste Daroussin }
58a9e8641dSBaptiste Daroussin 
59a9e8641dSBaptiste Daroussin #endif /* !HAVE_STRLCPY */
60a9e8641dSBaptiste Daroussin 
61a9e8641dSBaptiste Daroussin #ifndef HAVE_REALLOCF
62a9e8641dSBaptiste Daroussin 
63a9e8641dSBaptiste Daroussin /*-
64a9e8641dSBaptiste Daroussin  * Copyright (c) 1998, M. Warner Losh <imp@freebsd.org>
65a9e8641dSBaptiste Daroussin  * All rights reserved.
66a9e8641dSBaptiste Daroussin  *
67a9e8641dSBaptiste Daroussin  * Redistribution and use in source and binary forms, with or without
68a9e8641dSBaptiste Daroussin  * modification, are permitted provided that the following conditions
69a9e8641dSBaptiste Daroussin  * are met:
70a9e8641dSBaptiste Daroussin  * 1. Redistributions of source code must retain the above copyright
71a9e8641dSBaptiste Daroussin  *    notice, this list of conditions and the following disclaimer.
72a9e8641dSBaptiste Daroussin  * 2. Redistributions in binary form must reproduce the above copyright
73a9e8641dSBaptiste Daroussin  *    notice, this list of conditions and the following disclaimer in the
74a9e8641dSBaptiste Daroussin  *    documentation and/or other materials provided with the distribution.
75a9e8641dSBaptiste Daroussin  *
76a9e8641dSBaptiste Daroussin  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
77a9e8641dSBaptiste Daroussin  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
78a9e8641dSBaptiste Daroussin  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
79a9e8641dSBaptiste Daroussin  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
80a9e8641dSBaptiste Daroussin  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
81a9e8641dSBaptiste Daroussin  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
82a9e8641dSBaptiste Daroussin  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
83a9e8641dSBaptiste Daroussin  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
84a9e8641dSBaptiste Daroussin  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
85a9e8641dSBaptiste Daroussin  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
86a9e8641dSBaptiste Daroussin  * SUCH DAMAGE.
87a9e8641dSBaptiste Daroussin  *
88*fbe95b88SBaptiste Daroussin  * $FreeBSD: src/lib/libc/stdlib/reallocf.c,v 1.3 1999/08/28 00:01:37 peter Exp $
89a9e8641dSBaptiste Daroussin  * $DragonFly: src/lib/libc/stdlib/reallocf.c,v 1.2 2003/06/17 04:26:46 dillon Exp $
90a9e8641dSBaptiste Daroussin  */
91a9e8641dSBaptiste Daroussin #include <stdlib.h>
92a9e8641dSBaptiste Daroussin 
93a9e8641dSBaptiste Daroussin void *
reallocf(void * ptr,size_t size)94a9e8641dSBaptiste Daroussin reallocf(void *ptr, size_t size)
95a9e8641dSBaptiste Daroussin {
96a9e8641dSBaptiste Daroussin 	void *nptr;
97a9e8641dSBaptiste Daroussin 
98a9e8641dSBaptiste Daroussin 	nptr = realloc(ptr, size);
99*fbe95b88SBaptiste Daroussin 	if (!nptr && ptr && size != 0)
100a9e8641dSBaptiste Daroussin 		free(ptr);
101a9e8641dSBaptiste Daroussin 	return (nptr);
102a9e8641dSBaptiste Daroussin }
103a9e8641dSBaptiste Daroussin 
104a9e8641dSBaptiste Daroussin #endif /* !HAVE_REALLOCF */
105a9e8641dSBaptiste Daroussin 
106a9e8641dSBaptiste Daroussin #ifndef HAVE_GETPROGNAME
107a9e8641dSBaptiste Daroussin 
108a9e8641dSBaptiste Daroussin #ifdef __GLIBC__
109a9e8641dSBaptiste Daroussin 
110a9e8641dSBaptiste Daroussin #include <errno.h>
111a9e8641dSBaptiste Daroussin 
112a9e8641dSBaptiste Daroussin const char *
getprogname(void)113a9e8641dSBaptiste Daroussin getprogname(void)
114a9e8641dSBaptiste Daroussin {
115a9e8641dSBaptiste Daroussin 	return (program_invocation_short_name);
116a9e8641dSBaptiste Daroussin }
117a9e8641dSBaptiste Daroussin 
118a9e8641dSBaptiste Daroussin #else /* __GLIBC__ */
119a9e8641dSBaptiste Daroussin #error "no getprogname implementation available"
120a9e8641dSBaptiste Daroussin #endif
121a9e8641dSBaptiste Daroussin 
122a9e8641dSBaptiste Daroussin #endif /* !HAVE_GETPROGNAME */
123