slr/lexer.h
2024-05-16 19:03:04 +01:00

8 lines
86 B
C

#ifndef LEXER_H_
#define LEXER_H_
#include "slr.h"
Token *lexer(char *buf);
#endif