26 lines
459 B
C
26 lines
459 B
C
/*
|
|
* Copyright (c) 2026, Mirocom Laboratories
|
|
* Provided under the BSD-3 clause
|
|
*
|
|
* Abstract:
|
|
* This file implements the parser.
|
|
* Author:
|
|
* Ian M. Moffett <ian@mirocom.org>
|
|
*/
|
|
|
|
#ifndef FRONTEND_PARSER_H
|
|
#define FRONTEND_PARSER_H 1
|
|
|
|
#include "common/state.h"
|
|
|
|
/*
|
|
* Begin parsing the source file
|
|
*
|
|
* @state: Quip state machine
|
|
*
|
|
* Returns zero on success
|
|
*/
|
|
int parser_parse(struct quip_state *state);
|
|
|
|
#endif /* !FRONTEND_PARSER_H */
|