view include/core/array.h @ 28:58d53f014612

ci/win32: create binfmt_misc status file
author Paper <mrpapersonic@gmail.com>
date Wed, 20 Sep 2023 00:36:04 -0400
parents 8a4122caaf2f
children 329b7921a6be
line wrap: on
line source

#ifndef __core__array_h
#define __core__array_h

#ifndef ARRAYSIZE
#define ARRAYSIZE(x) \
    (sizeof(x) / sizeof(x[0]))
#endif

#endif // __core__array_h