summaryrefslogtreecommitdiffstats
path: root/src/code-generation.h
blob: 8250695f30ff2de0698efd96b684a06a9b3874dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef CCMMC_HEADER_CODE_GENERATION_H
#define CCMMC_HEADER_CODE_GENERATION_H

#include "ast.h"
#include "symbol-table.h"

#include <stdio.h>

void             ccmmc_code_generation              (CcmmcAst *root,
                                                     CcmmcSymbolTable *table,
                                                     FILE *asm_output);

#endif
// vim: set sw=4 ts=4 sts=4 et: