File:  [MW Coherent from dump] / coherent / b / lib / libc / string / strxfrm.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Wed May 29 04:56:35 2019 UTC (7 years ago) by root
Branches: MarkWilliams, MAIN
CVS tags: relic, HEAD
coherent

/*
 * strxfrm.c
 * ANSI 4.11.4.5
 * Transform string into locale-specific collating sequence.
 * This version just returns the original string.
 */

#include <string.h>

size_t strxfrm(s1, s2, n) char *s1, *s2; size_t n;
{
	strncpy(s1, s2, n);
	return (strlen(s2));
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.