First Commit

This commit is contained in:
Theo Tappe
2026-06-10 16:58:35 +02:00
commit 1e5eeb704f
42 changed files with 4037 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("Makefile")]:
text += "--- " + str(file) + " ---\n\n"
text += file.read_text()
Path("all.txt").write_text(text)