Initial commit

This commit is contained in:
2026-07-16 14:33:51 +02:00
commit 0c3da958e2
59 changed files with 4868 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
from pathlib import Path
path = Path(".")
text = ""
for file in path.glob("**/*.h"):
text += "--- " + str(file) + " ---\n\n"
text += file.read_text()
for file in path.glob("**/*.c"):
text += "--- " + str(file) + " ---\n\n"
text += file.read_text()
for file in [Path("CMakeLists.txt")]:
text += "--- " + str(file) + " ---\n\n"
text += file.read_text()
Path("all.txt").write_text(text)