summaryrefslogtreecommitdiff
path: root/src/nelem.h
blob: 61bf6ce4ee01f8a499d79611a66cec26bdbdc8a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (C) 2021 Philip Jones
 *
 * Licensed under the MIT License.
 * See either the LICENSE file, or:
 *
 * https://opensource.org/licenses/MIT
 *
 */

#ifndef N_ELEM
#define N_ELEM(x) (sizeof(x) / sizeof(*(x)))
#endif