delete_left_blanks()

delete_left_blanks()#

Remove leading whitespace characters from a string.

Prototype

PUBLIC char *delete_left_blanks(
    char        *string
);
        

Parameters

Key

Type

Description

string

char *

The string to modify.


Return Value

Returns the modified string with leading whitespace removed.

Prototype

// Not applicable in JS

Prototype

# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples