MCPcopy Create free account
hub / github.com/KaisenAmin/c_std / stack_is_not_equal

Function stack_is_not_equal

stack/stack.c:243–245  ·  view source on GitHub ↗

@brief Inverse of stack_is_equal. */

Source from the content-addressed store, hash-verified

241
242/** @brief Inverse of stack_is_equal. */
243bool stack_is_not_equal(const Stack* stk1, const Stack* stk2) {
244 return !stack_is_equal(stk1, stk2);
245}
246
247
248/** @brief Lexicographic less-than over the underlying vector bytes. */

Callers

nothing calls this directly

Calls 1

stack_is_equalFunction · 0.85

Tested by

no test coverage detected