Added file comments

This commit is contained in:
Kyler Olsen 2025-06-13 00:12:17 -06:00
parent 9bc67d4268
commit f7b1436f87
5 changed files with 25 additions and 0 deletions

View File

@ -1,3 +1,8 @@
// Kyler Olsen
// ZINC Bootstrap compiler
// Lexer Header
// June 2025
#ifndef SYNC_LEXER_H #ifndef SYNC_LEXER_H
#define SYNC_LEXER_H #define SYNC_LEXER_H

View File

@ -1,3 +1,8 @@
// Kyler Olsen
// ZINC Bootstrap compiler
// Shared Types Header
// June 2025
#ifndef SYNC_TYPES_H #ifndef SYNC_TYPES_H
#define SYNC_TYPES_H #define SYNC_TYPES_H

View File

@ -1,3 +1,8 @@
// Kyler Olsen
// ZINC Bootstrap compiler
// Lexer
// June 2025
#include <ctype.h> #include <ctype.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -1,3 +1,8 @@
// Kyler Olsen
// ZINC Bootstrap compiler
// Main
// June 2025
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include "sync/types.h" #include "sync/types.h"

View File

@ -1,3 +1,8 @@
// Kyler Olsen
// ZINC Bootstrap compiler
// Lexer Tests
// June 2025
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>
#include <stdio.h> #include <stdio.h>