Insert a string at the beginning of another string
#include <publib.h> char *strins(char *tgt, const char *src);
strins inserts 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.
strins returns its first argument.
See the manual page for strdel(3) for an example.
publib(3), strdel(3), strnins(3)
Lars Wirzenius ([email protected])