blob: 325c746e7ba727bf4f2ee2247836ee284703a6cc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
#ifndef CT_COMPILER_H
#define CT_COMPILER_H
#include <cu/scope.h>
int compile(const char *file);
int process_file(struct scope **parent, int public, const char *file);
#endif /* CT_COMPILER_H */
|