mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-16 21:35:07 +00:00
14 lines
332 B
C
14 lines
332 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
#ifndef _LINUX_ARRAY_SIZE_H
|
||
|
#define _LINUX_ARRAY_SIZE_H
|
||
|
|
||
|
#include <linux/compiler.h>
|
||
|
|
||
|
/**
|
||
|
* ARRAY_SIZE - get the number of elements in array @arr
|
||
|
* @arr: array to be sized
|
||
|
*/
|
||
|
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
|
||
|
|
||
|
#endif /* _LINUX_ARRAY_SIZE_H */
|