Plan 9 from Bell Labs’s /usr/web/sources/plan9/sys/src/ape/lib/ap/gen/strxfrm.c

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#include <string.h>

size_t
strxfrm(char *s1, const char *s2, size_t n)
{
	/*
	 * BUG: supposed to transform s2 to a canonical form
	 * so that strcmp can be used instead of strcoll, but
	 * our strcoll just uses strcmp.
	 */

	size_t xn = strlen(s2);
	if(n > xn)
		n = xn;
	memcpy(s1, s2, n);
	return xn;
}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.