aboutsummaryrefslogtreecommitdiff
path: root/util/util.h
blob: 9dc29d868743f7c2d874cbab67d4d55c905c9688 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef UTIL_H
#define UTIL_H

#define IMPLEMENT_FUNCPTR(type, name, args)  \
    type __##name args;                      \
    type (*name) args = __##name;            \
    type __##name args

#define X_TO_STR(s) #s,
#define X_TO_ENUM(s) s,

#endif