c-template
array_len.h
Go to the documentation of this file.
1 // returns the number of elements in an array
2 #define array_len(x) ((array_size(x) > 0) ? sizeof(x) / sizeof(x[0]) : 0)
3 // returns the size of the array in bytes
4 #define array_size(x) (sizeof(x))