str_concat_free()#
Frees memory allocated for a concatenated string created by str_concat() or str_concat3().
Prototype
void str_concat_free(char *s);
Parameters
Key |
Type |
Description |
|---|---|---|
|
|
Pointer to the dynamically allocated string to be freed. |
Return Value
None.
Notes
This function should only be used to free memory allocated by str_concat() or str_concat3().
Prototype
// Not applicable in JS
Prototype
# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples