/*
 * This file is part of Beastie <https://purl.org/nxg/dist/beastie>
 * SPDX-FileCopyrightText: 2023 Norman Gray <https://nxg.me.uk>
 * 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 */
