cinc/tokenize.h

21 lines
328 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"
#define ID_MAX_SIZE 31
#define NUM_MAX_SIZE 31
2018-09-09 12:15:27 -05:00
Token* tokenize(char* prg);
void free_toklist(Token* tokens);
#endif /* tokenize_h */