21 lines
328 B
C
21 lines
328 B
C
//
|
|
// 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
|
|
|
|
Token* tokenize(char* prg);
|
|
|
|
void free_toklist(Token* tokens);
|
|
#endif /* tokenize_h */
|