1 /* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */ 2 #ifndef LIBPLDM_SRC_ARRAY_H 3 #define LIBPLDM_SRC_ARRAY_H 4 5 #ifndef ARRAY_SIZE 6 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0])) 7 #endif 8 9 #endif 10
1 /* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */ 2 #ifndef LIBPLDM_SRC_ARRAY_H 3 #define LIBPLDM_SRC_ARRAY_H 4 5 #ifndef ARRAY_SIZE 6 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0])) 7 #endif 8 9 #endif 10