From 944c905ee4187477a769624514545338b81fa4d0 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Tue, 18 Feb 2020 22:42:06 +0100 Subject: Add basic Guile stuff --- src/scheme.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/scheme.h (limited to 'src/scheme.h') diff --git a/src/scheme.h b/src/scheme.h new file mode 100644 index 0000000..d3d9478 --- /dev/null +++ b/src/scheme.h @@ -0,0 +1,29 @@ +/* + * scheme.h + * + * Copyright © 2019-2020 Thomas White + * + * This file is part of NanoLight. + * + * NanoLight is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ + +#ifndef SCHEME_H +#define SCHEME_H + +extern void *register_scheme_funcs(void *data); +extern void *run_repl(void *pargsv); + +#endif /* SCHEME_H */ -- cgit v1.2.3