HM_strins()
Inserts a string into another string.
Syntax
char * HM_strins(char * string1, int position, char * string2);
    Type
HyperMesh hmlib Function
Description
Inserts a string into another string.
Inputs
- string1
 - A pointer to the string that is to have string2 inserted.
 - position
 - The position in *string1 where *string2 should be inserted.
 - string2
 - A pointer to the string that is to be inserted into *string1.
 
Example
A pointer to the string.
Errors
None.