initial commit

This commit is contained in:
jazz
2026-03-23 17:01:32 -05:00
parent d3c52fd18a
commit 33f7d4bcc4
16 changed files with 767 additions and 9 deletions

9
log.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef LOG_H
#define LOG_H
#include "public.h"
int linesInFile(string path);
int writeToFile(string path, string line, bool incLineNum);
#endif