/* * File: utils.h * Author: torsten.roemer@luniks.net * * Created on 14. April 2023, 00:14 */ #ifndef UTILS_H #define UTILS_H /** * Computes the length of the given array. */ #define ARRAY_LENGTH(array) (sizeof(array) / sizeof(array[0])) #endif /* UTILS_H */