summaryrefslogtreecommitdiff
path: root/lit.h
blob: e94263c22968f35e525d6278e1b38ba207b0b710 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef LIT_H
#define LIT_H

#include "lex.h"
#include "parse.h"
#include "prv.h"

const struct lit *lit_push(const struct tk *tk, struct prv *p);
int lit_cgen(const struct lit *l);
void lit_free(struct lit *l);

#endif