kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

parse.h (341B)


      1 #ifndef KIT_LANG_C_PARSE_H
      2 #define KIT_LANG_C_PARSE_H
      3 
      4 #include "decl/decl.h"
      5 #include "parse/cg_adapter.h"
      6 #include "pp/pp.h"
      7 
      8 /* C11 frontend. Reads preprocessed tokens, records C declarations, and drives
      9  * the public CG API for executable code and object data. */
     10 void parse_c(Compiler*, Pool*, Pp*, DeclTable*, CG*, KitSymVis);
     11 
     12 #endif