16 lines
270 B
C
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
|