blob: d42ce3b6eae3e4b76728af3d7cba5e7628b628c0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#import <Foundation/Foundation.h>
/* get #of elements in a static array */
#ifndef NELEM
#define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))
#endif
int main(void) {
return 0;
}
|