From: ken Date: Sat, 14 Jan 2017 17:38:41 +0000 (-0800) Subject: deleted X-Git-Url: https://www.kengrimes.com/gitweb/?p=henge%2Fapc.git;a=commitdiff_plain;h=8a2e47873c6c56f69ab6464c66f2e6b16ce42cc8 deleted --- diff --git a/src/lexer.c b/src/lexer.c deleted file mode 100644 index b8d7762..0000000 --- a/src/lexer.c +++ /dev/null @@ -1,40 +0,0 @@ -/*!@file - \brief lexical analyzer implementation for APC - \details The lexer manages two FIFO stacks. One for maintaining tokens, the - other for maintaining a list of files to be scanned. During - execution, the lexer will return a token from its token queue if any - are present. If not, the lexer will will pop an element from its - file queue to 'scanner' to be tokenized. If the file queue is empty, - the lexer will instead call 'parsedir' to traverse the directory tree - and tokenize the results. If 'parsedir' does not generate any new - tokens, we are done. - \author Jordan Lavatai - \date Aug 2016 - ----------------------------------------------------------------------------*/ -/* Standard */ -#include -#include -#include -#include -/* Posix */ -#include -#include -#include -#include -#include -#include -#include -#include -/* Local */ -#include "apc.h" -#include "parser.tab.h" -/* Public */ -/* Private */ -extern //lexer.rl -int lexer_lexstring(uint8_t const*, int); -extern //scanner.c -yypstate* apc_pstate; -extern //scanner.c -yycstate* apc_cstate; - -