aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.h
blob: eda799d41a3274e99b59de1b425366b93d4d5816 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef ORYX_CODEGEN_H
#define ORYX_CODEGEN_H

#include "analyzer.h"
#include "lexer.h"
#include "parser.h"

void codegen(const char *, struct scope *, struct type *, struct ast,
             struct lexemes)
	__attribute__((nonnull));

#endif /* !ORYX_CODEGEN_H */