Skip to content

StrPushBackL

Description

Append a single character to the end of str. L-form (ownership- transfer); on success the source char lvalue is zeroed.

Success

Returns true; the character is appended at the tail.

Failure

Returns false on allocation failure. str unchanged.

Usage example (Cross-references)

Usage examples (Cross-references)
    /// TAGS: Str, PushBack, Char
    ///
    #define StrPushBack(str, val) StrPushBackL((str), (val))
    
    ///
Last updated on