kit

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

c_support.h (340B)


      1 #ifndef KIT_LANG_C_SUPPORT_H
      2 #define KIT_LANG_C_SUPPORT_H
      3 
      4 /* C-frontend support layer. Re-exports the lexer/preprocessor shared
      5  * substrate (cpp_support.h) and adds C-specific helpers used by the
      6  * parser, declarations, and types. */
      7 
      8 #include "cpp_support.h"
      9 
     10 typedef struct SrcRange {
     11   SrcLoc begin;
     12   SrcLoc end;
     13 } SrcRange;
     14 
     15 #endif