#include #include #include "../token/inc.h" #include "../token/free.h" #include "struct.h" #include "put_back.h" void tokenizer_put_back( struct tokenizer* this, struct token* token) { ENTER; assert(!this->put_back); this->put_back = inc_token(this->token); free_token(this->token), this->token = inc_token(token); EXIT; }