2007-01-12 02:49:29 +01:00
|
|
|
/* $MirOS: src/bin/mksh/strlfun.c,v 1.9 2007/01/12 01:49:29 tg Exp $ */
|
2007-01-09 18:34:21 +01:00
|
|
|
/* $miros: src/lib/libc/string/strlfun.c,v 1.14 2007/01/07 02:11:40 tg Exp $ */
|
2006-08-01 15:43:28 +02:00
|
|
|
|
|
|
|
/*-
|
2006-11-08 23:54:55 +01:00
|
|
|
* Copyright (c) 2006
|
|
|
|
* Thorsten Glaser <tg@mirbsd.de>
|
2006-08-01 15:43:28 +02:00
|
|
|
*
|
2007-01-09 18:34:21 +01:00
|
|
|
* This work is provided "AS IS" and WITHOUT WARRANTY of any kind, to
|
|
|
|
* the utmost extent permitted by applicable law, neither express nor
|
|
|
|
* implied; without malicious intent or gross negligence. In no event
|
|
|
|
* may a licensor, author or contributor be held liable for indirect,
|
|
|
|
* direct, other damage, loss, or other issues arising in any way out
|
|
|
|
* of dealing in the work, even if advised of the possibility of such
|
|
|
|
* damage or existence of a defect, except proven that it results out
|
|
|
|
* of said person's immediate fault when using the work as intended.
|
2006-11-08 23:54:55 +01:00
|
|
|
*-
|
|
|
|
* The strlcat() code below has been written by Thorsten Glaser. Bodo
|
|
|
|
* Eggert suggested optimising the strlcpy() code, originally written
|
|
|
|
* by Todd C. Miller (see below), which was carried out by Th. Glaser
|
2007-01-09 18:34:21 +01:00
|
|
|
* as well as merging this code with strxfrm() for ISO-10646-only sy-
|
|
|
|
* stems and writing wcslcat(), wcslcpy() and wcsxfrm() equivalents.
|
2006-08-01 15:43:28 +02:00
|
|
|
*/
|
|
|
|
|
2007-01-09 18:34:21 +01:00
|
|
|
#ifdef STRXFRM
|
|
|
|
#undef HAVE_STRLCPY
|
|
|
|
#undef HAVE_STRLCAT
|
|
|
|
#define HAVE_STRLCPY 0
|
|
|
|
#define HAVE_STRLCAT 1
|
|
|
|
#define strlcpy strxfrm
|
|
|
|
#endif
|
|
|
|
|
2006-11-08 23:54:55 +01:00
|
|
|
#include <sys/types.h>
|
2006-08-01 15:43:28 +02:00
|
|
|
#if defined(_KERNEL) || defined(_STANDALONE)
|
2006-11-08 23:54:55 +01:00
|
|
|
#include <lib/libkern/libkern.h>
|
|
|
|
#undef HAVE_STRLCPY
|
|
|
|
#undef HAVE_STRLCAT
|
2006-08-01 15:43:28 +02:00
|
|
|
#else
|
2006-11-09 00:23:41 +01:00
|
|
|
#if defined(HAVE_CONFIG_H) && (HAVE_CONFIG_H != 0)
|
2006-11-09 00:02:30 +01:00
|
|
|
/* usually when packaged with third-party software */
|
2006-11-08 23:54:55 +01:00
|
|
|
#ifdef CONFIG_H_FILENAME
|
|
|
|
#include CONFIG_H_FILENAME
|
|
|
|
#else
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
2006-08-01 15:43:28 +02:00
|
|
|
|
2006-11-08 23:54:55 +01:00
|
|
|
#ifndef __predict_true
|
|
|
|
#define __predict_true(exp) ((exp) != 0)
|
|
|
|
#endif
|
2006-08-01 15:43:28 +02:00
|
|
|
#ifndef __predict_false
|
|
|
|
#define __predict_false(exp) ((exp) != 0)
|
|
|
|
#endif
|
|
|
|
|
2007-01-09 18:34:21 +01:00
|
|
|
#if !defined(_KERNEL) && !defined(_STANDALONE)
|
2007-01-12 02:49:29 +01:00
|
|
|
__RCSID("$MirOS: src/bin/mksh/strlfun.c,v 1.9 2007/01/12 01:49:29 tg Exp $");
|
2007-01-09 18:34:21 +01:00
|
|
|
#endif
|
2006-08-01 15:43:28 +02:00
|
|
|
|
|
|
|
size_t strlcpy(char *, const char *, size_t);
|
|
|
|
|
2006-11-08 23:54:55 +01:00
|
|
|
/* $OpenBSD: strlcpy.c,v 1.10 2005/08/08 08:05:37 espie Exp $ */
|
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*/
|
|
|
|
|
2006-11-09 00:23:41 +01:00
|
|
|
#if !defined(HAVE_STRLCPY) || (HAVE_STRLCPY == 0)
|
2006-08-01 15:43:28 +02:00
|
|
|
/*
|
|
|
|
* Copy src to string dst of size siz. At most siz-1 characters
|
|
|
|
* will be copied. Always NUL terminates (unless siz == 0).
|
|
|
|
* Returns strlen(src); if retval >= siz, truncation occurred.
|
|
|
|
*/
|
|
|
|
size_t
|
|
|
|
strlcpy(char *dst, const char *src, size_t siz)
|
|
|
|
{
|
|
|
|
const char *s = src;
|
|
|
|
|
2006-11-08 23:54:55 +01:00
|
|
|
if (__predict_false(siz == 0))
|
2006-08-01 15:43:28 +02:00
|
|
|
goto traverse_src;
|
|
|
|
|
|
|
|
/* copy as many chars as will fit */
|
2006-11-08 23:54:55 +01:00
|
|
|
while (--siz && (*dst++ = *s++))
|
2006-08-01 15:43:28 +02:00
|
|
|
;
|
|
|
|
|
|
|
|
/* not enough room in dst */
|
2006-11-08 23:54:55 +01:00
|
|
|
if (__predict_false(siz == 0)) {
|
|
|
|
/* safe to NUL-terminate dst since we copied <= siz-1 chars */
|
2006-08-01 15:43:28 +02:00
|
|
|
*dst = '\0';
|
|
|
|
traverse_src:
|
|
|
|
/* traverse rest of src */
|
|
|
|
while (*s++)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* count doesn't include NUL */
|
|
|
|
return (s - src - 1);
|
|
|
|
}
|
|
|
|
#endif /* !HAVE_STRLCPY */
|