Init. Copied over heload, made a minimal tester.

This commit is contained in:
2025-03-16 18:46:12 +02:00
commit 21bf4d8715
12 changed files with 646 additions and 0 deletions

18
test/manual/minimal.cpp Normal file
View File

@@ -0,0 +1,18 @@
#include "minimal_lib.h"
#include <chrono>
#include <cstdio>
#include <thread>
int main(int argc, char *argv[]) {
int modified = -1;
while (modified != 0) {
modified = minimal_lib::getModified(5);
printf("getModified(5): %d\n", modified);
std::this_thread::sleep_for(std::chrono::seconds(1));
}
return 0;
}