feat(include): add some gx device headers

This commit is contained in:
phaneron 2024-07-08 15:26:09 -04:00
parent 172cf3792d
commit e7bb9a818a
14 changed files with 805 additions and 13 deletions

View file

@ -5,6 +5,6 @@
#include "storm/array.h"
STORM_TS_GROWABLE_ARRAY(uint32_t)
STORM_TS_GROWABLE_ARRAY(uint32_t);
#endif

View file

@ -0,0 +1,10 @@
#ifndef STORM_ARRAY_UINT8_T_H
#define STORM_ARRAY_UINT8_T_H
#include <stdint.h>
#include "storm/array.h"
STORM_TS_GROWABLE_ARRAY(uint8_t);
#endif