blob: 5cc181ec77df40818c985b76845a466739d7f22a (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef CCANLINT_BUILD_H
#define CCANLINT_BUILD_H
char *build_module(struct manifest *m, enum compile_type ctype, char **errstr);
char *build_submodule(struct manifest *m, const char *flags,
enum compile_type ctype);
void build_objects(struct manifest *m,
struct score *score, const char *flags,
enum compile_type ctype);
#endif /* CCANLINT_BUILD_H */
|