2013-06-04 05:30:43 +08:00
|
|
|
/*
|
2007-11-08 00:26:41 +08:00
|
|
|
* dhcpcd - DHCP client daemon
|
2009-05-01 21:57:45 +08:00
|
|
|
* Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
|
2009-07-14 21:59:30 +08:00
|
|
|
* All rights reserved
|
|
|
|
|
2008-01-16 23:59:14 +08:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
2006-11-28 04:23:22 +08:00
|
|
|
*/
|
|
|
|
|
2009-07-14 21:59:30 +08:00
|
|
|
#include <sys/types.h>
|
2007-05-11 00:08:49 +08:00
|
|
|
|
2009-07-14 21:59:30 +08:00
|
|
|
#include "strlcpy.h"
|
2008-05-19 21:36:06 +08:00
|
|
|
|
2009-07-14 21:59:30 +08:00
|
|
|
size_t
|
|
|
|
strlcpy(char *dst, const char *src, size_t size)
|
|
|
|
{
|
|
|
|
const char *s = src;
|
|
|
|
size_t n = size;
|
2007-09-04 20:48:40 +08:00
|
|
|
|
2009-07-14 21:59:30 +08:00
|
|
|
if (n && --n)
|
|
|
|
do {
|
|
|
|
if (!(*dst++ = *src++))
|
|
|
|
break;
|
|
|
|
} while (--n);
|
2008-04-18 05:18:20 +08:00
|
|
|
|
2009-07-14 21:59:30 +08:00
|
|
|
if (!n) {
|
|
|
|
if (size)
|
|
|
|
*dst = '\0';
|
|
|
|
while (*src++);
|
|
|
|
}
|
2007-05-11 00:08:49 +08:00
|
|
|
|
2009-07-14 21:59:30 +08:00
|
|
|
return src - s - 1;
|
|
|
|
}
|