All checks were successful
Build documentation / build-and-deploy (push) Successful in 27s
7 lines
153 B
C
7 lines
153 B
C
#ifndef _KERNEL_LIBK_LENGTHOF_H
|
|
#define _KERNEL_LIBK_LENGTHOF_H
|
|
|
|
#define lengthof(x) (sizeof ((x)) / sizeof ((x)[0]))
|
|
|
|
#endif // _KERNEL_LIBK_LENGTHOF_H
|