strchange - replace beginning of string with beginning of another string
Contents
Description
strchange will replace changelen characters from the beginning of str with newlen characters from the
beginning of new. The rest of str will moved appropriately.
Name
strchange - replace beginning of string with beginning of another string
Return Value
strchange will return its first argument.
See Also
publib(3), strcpy(3)
Synopsis
#include <publib.h>
char *strchange(char *str, size_t changelen,
const char *new, size_t newlen);
