harec

[hare] Hare compiler, written in C11 for POSIX OSs
Log | Files | Refs | README | LICENSE

mod.h (299B)


      1 #ifndef HARE_MOD_H
      2 #define HARE_MOD_H
      3 #include "identifier.h"
      4 #include "scope.h"
      5 #include "type_store.h"
      6 
      7 struct modcache;
      8 struct ast_global_decl;
      9 struct scope *module_resolve(struct modcache *cache[],
     10 	struct ast_global_decl *defines,
     11 	struct identifier *ident,
     12 	struct type_store *store);
     13 
     14 #endif