Adding ptr_array data structure.

This commit is contained in:
Bart House
2019-07-13 16:08:08 -07:00
parent c44ad5645d
commit e665d3b850
3 changed files with 43 additions and 0 deletions

View File

@@ -455,6 +455,13 @@ struct early_opt {
boolean valallowed;
};
struct ptr_array {
size_t length;
size_t max_length;
void ** elements;
};
typedef struct ptr_array ptr_array_t;
#undef E
#endif /* DECL_H */