All checks were successful
Build documentation / build-and-deploy (push) Successful in 55s
9 lines
209 B
C
9 lines
209 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
|