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