Added file comments
This commit is contained in:
parent
9bc67d4268
commit
f7b1436f87
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue