aboutsummaryrefslogtreecommitdiffstats
path: root/nelem.h
blob: 229db4acc6f6965a9ee4ff0be8c77ff73591e75f (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * Copyright (C) 2018 Tomasz Kramkowski <tk@the-tk.com>
 * SPDX-License-Identifier: MIT
 */
#ifndef NELEM_H
#define NELEM_H

// NELEM: calculate array element count
#define NELEM(a) (sizeof (a) / sizeof (a)[0])

#endif // NELEM_H