123456789101112131415 |
- /// @file
- /// @ingroup cgraph_utils
- #pragma once
- #include <assert.h>
- #include <stdbool.h>
- #include <stddef.h>
- #include <string.h>
- /// are `a` and `b` equal?
- static inline bool streq(const char *a, const char *b) {
- assert(a != NULL);
- assert(b != NULL);
- return strcmp(a, b) == 0;
- }
|