Added some forgoton deffinitions and changed some definitions

This commit is contained in:
2025-01-24 13:46:54 -08:00
parent 4d5425b7d4
commit e67703d886
2 changed files with 21 additions and 20 deletions

View File

@@ -13,7 +13,7 @@ struct pickle_jar {
int functionCount;
bool passed;
} ;
///
struct pickle_shelf {
struct pickle_jar* pickle_jars;
int pickle_jarCount = 0;
@@ -71,4 +71,5 @@ int __pickle_shelf_run(pickle_shelf*);
#define PICKLE(name) struct pickle name = []() -> pickle
#define ADDPICKLE(jar,pickle) __pickle_add_jar(&jar, pickle, #pickle)
#define PUTJARONSHLEF(jar) __pickle_jar_add_to_shelf(&__pickle_shelf__,jar);
#define PICKLESHELF __pickle_shelf_run(&__pickle_shelf__)
#endif