| strins |
(String str1, String str2) |
yoix.string |
| |
Inserts a copy of the null-terminated string
str2
at the start of string
str1
and returns a pointer to the null-terminated result.
| |
| Example: |
The program.
import yoix.stdio.*;
import yoix.string.*;
String str[30] = "This is not a good example.";
strdel(str + 8, 4);
strins(str + 8, "now ");
puts(str);
prints
This is now a good example.
on standard output.
| | |
| Return: |
String
| | |
| See Also: |
strcasecmp,
strcat,
strchr,
strcmp,
strcpy,
strcspn,
strdel,
strdup,
strfmt,
strjoin,
strlen,
strncasecmp,
strncat,
strncmp,
strncpy,
strpbrk,
strrchr,
strrstr,
strsplit,
strspn,
strstr,
strtok
|
|
Yoix is a registered trademark of AT&T Intellectual Property.
|