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

11
disp.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef DISP_H
#define DISP_H
#include <string>
using namespace std;
void clearRows(int startingRow, int endingRow);
int displayFile(string path, int startLineNum, int numLines);
#endif