mirror of
https://github.com/BrianPugh/gnwmanager.git
synced 2025-12-06 19:15:56 +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
|