utils.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #ifndef __UTILS_H
  2. #define __UTILS_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #ifdef __UTILS_H_GLOBAL
  7. #define __UTILS_H_EXTERN
  8. #else
  9. #define __UTILS_H_EXTERN extern
  10. #endif
  11. /************************************************************************************************
  12. * Version *
  13. ************************************************************************************************/
  14. /************************************************************************************************
  15. * How to use *
  16. ************************************************************************************************/
  17. /************************************************************************************************
  18. * Enable config *
  19. ************************************************************************************************/
  20. /************************************************************************************************
  21. * Includes *
  22. ************************************************************************************************/
  23. /************************************************************************************************
  24. * Defines *
  25. ************************************************************************************************/
  26. #define ARR_SIZE(a) sizeof(a) / sizeof((a)[0])
  27. /************************************************************************************************
  28. * Defines *
  29. ************************************************************************************************/
  30. #ifdef __cplusplus
  31. };
  32. #endif
  33. #endif // __UTILS_H