Graphviz 13.0.0~dev.20241220.2304
Loading...
Searching...
No Matches
streq.h
Go to the documentation of this file.
1
3#pragma once
4
5#include <assert.h>
6#include <stdbool.h>
7#include <stddef.h>
8#include <string.h>
9
11static inline bool streq(const char *a, const char *b) {
12 assert(a != NULL);
13 assert(b != NULL);
14 return strcmp(a, b) == 0;
15}
node NULL
Definition grammar.y:163
static bool streq(const char *a, const char *b)
are a and b equal?
Definition streq.h:11