split_free3()

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

part1

char *

The first string to free.

part2

char *

The second string to free.

part3

char *

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