Files
Chloride/src/parser/literals/literals.h
2025-07-13 18:28:05 +01:00

16 lines
270 B
C

/*
* SPDX-FileCopyrightText: 2025 William Bell
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#ifndef LITERALS_H
#define LITERALS_H
#include "../parser.h"
ParsedValue * parse_true();
ParsedValue * parse_false();
ParsedValue * parse_null();
#endif // LITERALS_H