The FreeRADIUS server $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
Loading...
Searching...
No Matches
strlcpy.c
Go to the documentation of this file.
1/*
2 * Permission to use, copy, modify, and distribute this software for any
3 * purpose with or without fee is hereby granted, provided that the above
4 * copyright notice and this permission notice appear in all copies.
5 *
6 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
7 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
8 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
9 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
10 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
11 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
12 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
13 */
14
15/** Local implementation of the strlcpy function
16 *
17 * @file src/lib/util/strlcpy.c
18 *
19 * @copyright (c) 1998 Todd C. Miller (Todd.Miller@courtesan.com)
20 */
21RCSID("$Id: 3d0e937dc1088377d3c5120d5c95f6adc74262b3 $")
22
23#ifndef HAVE_STRLCPY
24
25#include <freeradius-devel/missing.h>
26
27/*
28 * Copy src to string dst of size siz. At most siz-1 characters
29 * will be copied. Always NUL terminates (unless siz == 0).
30 * Returns strlen(src); if retval >= siz, truncation occurred.
31 */
32/** @hidecallergraph */
33size_t
34strlcpy(char *dst, char const *src, size_t siz)
35{
36 char *d = dst;
37 char const *s = src;
38 size_t n = siz;
39
40 /* Copy as many bytes as will fit */
41 if (n != 0 && --n != 0) {
42 do {
43 if ((*d++ = *s++) == 0)
44 break;
45 } while (--n != 0);
46 }
47
48 /* Not enough room in dst, add NUL and traverse rest of src */
49 if (n == 0) {
50 if (siz != 0)
51 *d = '\0'; /* NUL-terminate dst */
52 while (*s++)
53 ;
54 }
55
56 return(s - src - 1); /* count does not include NUL */
57}
58
59#endif
int n
Definition acutest.h:577
#define RCSID(id)
Definition build.h:483
size_t strlcpy(char *dst, char const *src, size_t siz)
Definition strlcpy.c:34