Herb C Reference
Loading...
Searching...
No Matches
macros.h
Go to the documentation of this file.
1#ifndef HERB_MACROS_H
2#define HERB_MACROS_H
3
4#define MAX(a, b) ((a) > (b) ? (a) : (b))
5
6#define MIN(a, b) ((a) < (b) ? (a) : (b))
7
8#define unlikely(x) __builtin_expect(!!(x), 0)
9
10#endif