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
11
static
inline
bool
streq
(
const
char
*a,
const
char
*b) {
12
assert(a !=
NULL
);
13
assert(b !=
NULL
);
14
return
strcmp(a, b) == 0;
15
}
NULL
node NULL
Definition
grammar.y:163
streq
static bool streq(const char *a, const char *b)
are a and b equal?
Definition
streq.h:11
lib
util
streq.h
Generated by
1.9.8