1. Top
This is a file that will be for everything related to scheme.
In this folder are helpers and wrappers designed to making using the s9 scheme API a little bit easier.
<<scheme.h>>=
#ifndef SCHEME_H
#define SCHEME_H
<<scheme_macros>>
<<scheme_function_declarations>>
#endif
<<scheme.c>>=
#include <stdio.h>
#include <runt.h>
#include <graforge.h>
#include <runt_graforge.h>
#include <math.h>
#include <stdint.h>
#include "s9core.h"
#include "s9import.h"
#include "s9ext.h"
#include "scheme.h"
<<scheme_functions>>
prev | home | next