strnins - insert prefix of a string at the beginning of another string
Contents
Description
strins inserts upto n characters from the beginning of the src string at the beginning of the tgt string.
The strings must not overlap. The target string must contain enough memory to hold both strings.
Example
See the manual page for strdel(3) for an example.
Name
strnins - insert prefix of a string at the beginning of another string
Return Value
strnins returns its first argument.
See Also
publib(3), strdel(3), strins(3)
Synopsis
#include <publib.h>
char *strnins(char *tgt, const char *src, size_t n);
