9 lines
208 B
C
9 lines
208 B
C
#ifndef _KERNEL_LIBK_FIELDLENGTHOF_H
|
|
#define _KERNEL_LIBK_FIELDLENGTHOF_H
|
|
|
|
#include <libk/lengthof.h>
|
|
|
|
#define fieldlengthof(type, field) (lengthof(((type*)0)->field))
|
|
|
|
#endif // _KERNEL_LIBK_FIELDLENGTHOF_H
|