Typedef'd some structs to make code readability easier

This commit is contained in:
2020-10-06 15:00:13 +01:00
parent 14032f98cf
commit 4937b58c98
10 changed files with 78 additions and 79 deletions

View File

@@ -4,10 +4,11 @@
#include <stddef.h>
#include <stdint.h>
struct modb_t {
struct modb_ref_t {
const char *name;
size_t name_len;
};
typedef struct modb_ref_t modb_ref;
#endif // H__MODB_TYPES__