summaryrefslogtreecommitdiff
path: root/src/util.h
blob: 15b232317e29b16d8024305aec6c9909c54dbec4 (plain)
1
2
3
4
5
6
7
#ifndef _UTIL_H_
#define _UTIL_H_

#define lenghtof(arr) (sizeof(arr) / sizeof(*arr))
#define todo() warn("%s unimplemented.", __func__)

#endif