about summary refs log tree commit diff
path: root/misc/utils.h
blob: d9967793ce3ac02580047fb905180d616b979719 (plain)
1
2
3
4
5
6
7
#ifndef BTPD_UTILS_H
#define BTPD_UTILS_H

/* get the number of elements in a static table */
#define ARRAY_COUNT(array) (sizeof(array) / sizeof(array[0]))

#endif