This commit is contained in:
2025-01-22 20:53:12 +00:00
parent b79de7688c
commit 5cd483c356
5 changed files with 52 additions and 1 deletions

22
includes/Pickler.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef Pickler_H
#define Pickler_H
#define PICKLER_CPP
struct pickle_obj{
const char* message;
bool passed;
};
#ifdef PICKLER_CPP
struct pickle_jar {
struct pickle_obj functions[10];
int functionCount;
bool passed;
} ;
#endif
#define PICKLE(x) struct pickle_obj x = [](struct pickle_jar&)
#define ADDPICKLE(x)
#define ADDJARTOSHLEF(x)
#endif