SDDSlib
|
Provides string manipulation function. More...
#include "mdb.h"
#include <ctype.h>
Go to the source code of this file.
Functions | |
char * | insert (char *s, char *t) |
Inserts a substring into a target string. | |
Provides string manipulation function.
Definition in file insert.c.
char * insert | ( | char * | s, |
char * | t ) |
Inserts a substring into a target string.
This function inserts the string t
into the string s
at the beginning. It is assumed that s
has sufficient space to accommodate the additional characters.
s | Pointer to the destination string where t will be inserted. |
t | Pointer to the source string to be inserted into s . |
s
. Definition at line 29 of file insert.c.