ox

The Ox programming language, compiler and tools (WIP)
Log | Files | Refs | README | LICENSE

lexer.h (148B)


      1 #pragma once
      2 
      3 #include <stdlib.h>
      4 #include "types.h"
      5 
      6 void lexer_lex(Lexer*, const char* filename, const char* contents);
      7 void lexer_print(Lexer*);