mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2025-01-01 08:59:40 +00:00
10 lines
190 B
C
10 lines
190 B
C
|
/* SPDX-FileCopyrightText: © 2022 Decompollaborate */
|
||
|
/* SPDX-License-Identifier: MIT */
|
||
|
|
||
|
#ifndef MACROS_H
|
||
|
#define MACROS_H
|
||
|
|
||
|
#define ARRAY_COUNT(arr) (sizeof(arr) / sizeof(arr[0]))
|
||
|
|
||
|
#endif
|