1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
2001-11-02  Jakub Jelinek  <jakub@redhat.com>

	* string/bits/string2.h (__strndup): If n is smaller than len, set
	len to n + 1.
	* string/tester.c (test_strndup): New function.
	(main): Call it.

	* sunrpc/rpc_main.c: Optimize variable definitions a bit.
This commit is contained in:
Ulrich Drepper
2001-11-03 09:05:11 +00:00
parent 5f73e77144
commit fb4fb5428d
3 changed files with 36 additions and 2 deletions

View File

@ -1256,6 +1256,30 @@ test_bzero (void)
equal(one, "abcdef", 4); /* Zero-length copy. */
}
static void
test_strndup (void)
{
char *p, *q;
it = "strndup";
p = strndup("abcdef", 12);
check(p != NULL, 1);
if (p != NULL)
{
equal(p, "abcdef", 2);
q = strndup(p + 1, 2);
check(q != NULL, 3);
if (q != NULL)
equal(q, "bc", 4);
free (q);
}
free (p);
p = strndup("abc def", 3);
check(p != NULL, 5);
if (p != NULL)
equal(p, "abc", 6);
free (p);
}
static void
test_bcmp (void)
{
@ -1382,6 +1406,9 @@ main (void)
/* bcmp - somewhat like memcmp. */
test_bcmp ();
/* strndup. */
test_strndup ();
/* strerror - VERY system-dependent. */
test_strerror ();