/* * This file is part of Beastie * SPDX-FileCopyrightText: 2023 Norman Gray * SPDX-License-Identifier: BSD-2-Clause */ #ifndef CORE_H #define CORE_H 1 #include "s7.h" void set_parse_result(s7_pointer s); s7_pointer get_parse_result(void); void initialise_runtime(s7_scheme*); s7_pointer get_parse_authorlist_argument(void); s7_pointer get_parse_fmtstring_argument(void); #endif /* CORE_H */