pragma + watermarks
This commit is contained in:
@ -1,3 +1,6 @@
|
|||||||
|
/* Code Generator */
|
||||||
|
/* The Translators - Spring 2025 */
|
||||||
|
|
||||||
#include "codegen.h"
|
#include "codegen.h"
|
||||||
|
|
||||||
int generate() {
|
int generate() {
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
/* Code Generator */
|
||||||
|
/* The Translators - Spring 2025 */
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
/* Syntax Analyzer with Bison (3.8.2) */
|
||||||
|
/* The Translators - Spring 2025 */
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "../src/codegen.h"
|
#include "../src/codegen.h"
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
/* Syntax Analyzer with Bison (3.8.2) */
|
/* Syntax Analyzer with Bison (3.8.2) */
|
||||||
/* The Translators - Spring 2025 */
|
/* The Translators - Spring 2025 */
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
/* Intermediate Code */
|
||||||
|
/* The Translators - Spring 2025 */
|
||||||
|
|
||||||
#include "intermediate_code.h"
|
#include "intermediate_code.h"
|
||||||
|
|
||||||
// TODO: this is here to bring your attention to the comment bellow.
|
// TODO: this is here to bring your attention to the comment bellow.
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
/* Intermediate Code */
|
||||||
|
/* The Translators - Spring 2025 */
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
/* Lexical Analyzer with Flex (1.6.0) */
|
||||||
|
/* The Translators - Spring 2025 */
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
#include "../src/symbol_table.h"
|
#include "../src/symbol_table.h"
|
||||||
#include "../tmp/grammar.tab.h"
|
#include "../tmp/grammar.tab.h"
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
/* Symbol Table */
|
||||||
|
/* The Translators - Spring 2025 */
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
/* Type Definitions */
|
||||||
|
/* The Translators - Spring 2025 */
|
||||||
|
|
||||||
// identifier
|
// identifier
|
||||||
#define ID 101
|
#define ID 101
|
||||||
// type names
|
// type names
|
||||||
|
Reference in New Issue
Block a user