split_free3()
#
Free the memory allocated for three strings that were split.
Prototype
PUBLIC void split_free3(
char *part1,
char *part2,
char *part3
);
Parameters
Key |
Type |
Description |
---|---|---|
|
|
The first string to free. |
|
|
The second string to free. |
|
|
The third string to free. |
Return Value
No return value. This function frees the memory for the three strings.
Prototype
// Not applicable in JS
Prototype
# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples