File: mod.h

package info (click to toggle)
harec 0.26.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,480 kB
  • sloc: ansic: 20,054; asm: 335; makefile: 116; lisp: 80; sh: 45
file content (11 lines) | stat: -rw-r--r-- 202 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#ifndef HARE_MOD_H
#define HARE_MOD_H

struct ast_decls;
struct context;
struct ident;

struct scope *module_resolve(struct context *ctx,
	const struct ast_decls *defines, struct ident *ident);

#endif