mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 15:26:23 -05:00
7 lines
105 B
C
7 lines
105 B
C
|
#ifndef UTIL_H_
|
||
|
#define UTIL_H_
|
||
|
|
||
|
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
|
||
|
|
||
|
#endif /* UTIL_H_ */
|