Skip to content

StrPushFrontL

Description

Prepend a single character at the head of str. L-form (ownership- transfer); on success the source char lvalue is zeroed.

Success

Returns true; the character is prepended at the head.

Failure

Returns false on allocation failure. str unchanged.

Usage example (Cross-references)

Usage examples (Cross-references)
    /// TAGS: Str, PushFront, Char
    ///
    #define StrPushFront(str, val) StrPushFrontL((str), (val))
    
    ///
Last updated on