#ifndef _TOKENIZE_H #define _TOKENIZE_H #include "vect.h" // at least 255 char on command line #define MAX_SIZE 256 /* Creates and returns a vector containing * each token in the given input*/ vect_t* create_tokens(char* items); #endif