Skip to content

ListMustMerge

Description

Aborting variant of ListMerge. See that macro for parameter semantics and success-state effects.

Success

Returns to the caller. The underlying ListMerge call succeeded; see ListMerge for the post-state.

Failure

Does not return - aborts via LOG_FATAL / SysAbort when the underlying ListMerge call returns false.

Usage example (Cross-references)

Usage examples (Cross-references)
        do {                                                                                                               \
            if (!ListMerge((l), (l2))) {                                                                                   \
                LOG_FATAL("ListMustMerge failed");                                                                         \
            }                                                                                                              \
        } while (0)
Last updated on