cinc/cinc/tokenize.h

18 lines
280 B
C
Raw Normal View History

2018-09-09 12:15:27 -05:00
//
// tokenize.h
// cinc
//
// Created by Peter Terpstra on 9/7/18.
// Copyright © 2018 Peter Terpstra. All rights reserved.
//
#ifndef tokenize_h
#define tokenize_h
#include "token.h"
Token* tokenize(char* prg);
void free_toklist(Token* tokens);
#endif /* tokenize_h */