Treeset skeleton

This commit is contained in:
Imbus 2025-06-25 09:31:46 +02:00
parent f34dfcdccd
commit b0d86c7e2c
4 changed files with 72 additions and 0 deletions

7
treeset/main.c Normal file
View file

@ -0,0 +1,7 @@
#include "treeset.h"
#include <stdio.h>
int main() {
treeset_t tree = {};
return 0;
}