1/* SPDX-License-Identifier: GPL-2.0 */2#ifndefARRAY_SIZE_H3#defineARRAY_SIZE_H45/**
6 * ARRAY_SIZE - get the number of elements in array @arr
7 * @arr: array to be sized
8 */9#defineARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
1011#endif/* ARRAY_SIZE_H */12