Files
mop3/kernel/libk/lengthof.h
kamkow1 4ad1519e06
All checks were successful
Build documentation / build-and-deploy (push) Successful in 27s
Virtual filesystem and ramdiskfs
2026-02-11 21:36:50 +01:00

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