Added pointers to beginning and end of collection

This commit is contained in:
Abdelrahman Said 2023-06-30 01:16:10 +01:00
parent 93e17c0c54
commit 9a8bdcea02

View File

@ -60,7 +60,8 @@ typedef enum {
struct json_collection { struct json_collection {
u64 size; u64 size;
jcoll_type type; jcoll_type type;
jentity_t *first_child; jentity_t *begin;
jentity_t *end;
}; };
#endif // !JSON_ENTITIES_H #endif // !JSON_ENTITIES_H