delete_right_blanks()
#
Remove trailing whitespace characters from a string.
Prototype
PUBLIC char *delete_right_blanks(
char *string
);
Parameters
Key |
Type |
Description |
---|---|---|
|
|
The string to modify. |
Return Value
Returns the modified string with trailing whitespace removed.
Prototype
// Not applicable in JS
Prototype
# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples