mirror of
https://github.com/kbeckmann/game-and-watch-retro-go.git
synced 2025-12-17 19:16:02 +01:00
8 lines
114 B
C
8 lines
114 B
C
#pragma once
|
|
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#define ARRAY_SIZE(x) (sizeof(x)/sizeof((x)[0]))
|
|
|
|
#endif // UTILS_H
|