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