Created repl and file handling code files

This commit is contained in:
Kyler Olsen 2025-11-27 20:21:32 -07:00
parent 08205ea6bc
commit c9aceac591
4 changed files with 30 additions and 0 deletions

9
SLS_C/include/sls/file.h Normal file
View File

@ -0,0 +1,9 @@
// Kyler Olsen
// YREA SLS
// File Header
// November 2025
#ifndef SLS_FILE_H
#define SLS_FILE_H
#endif // SLS_FILE_H

9
SLS_C/include/sls/repl.h Normal file
View File

@ -0,0 +1,9 @@
// Kyler Olsen
// YREA SLS
// REPL Header
// November 2025
#ifndef SLS_REPL_H
#define SLS_REPL_H
#endif // SLS_REPL_H

6
SLS_C/src/file.c Normal file
View File

@ -0,0 +1,6 @@
// Kyler Olsen
// YREA SLS
// File
// November 2025
#include "sls/file.h"

6
SLS_C/src/repl.c Normal file
View File

@ -0,0 +1,6 @@
// Kyler Olsen
// YREA SLS
// REPL
// November 2025
#include "sls/repl.h"