logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

strins - insert a string at the beginning of another string

Author

       Lars Wirzenius (lars.wirzenius@helsinki.fi)

Publib                                        C Programmer's Manual                                 STRINS(3pub)

Description

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.

Example

       See the manual page for strdel(3) for an example.

Name

       strins - insert a string at the beginning of another string

Return Value

strins returns its first argument.

See Also

publib(3), strdel(3), strnins(3)

Synopsis

       #include <publib.h>
       char *strins(char *tgt, const char *src);

See Also