3. SQLar Scheme Loader
The scheme loader is done inside a function called
s9_load_sqlar
.
<<sqlar_function_declarations>>=
void s9_load_sqlar(void);
<<sqlar_functions>>=
<<sqlar_scheme_functions>>
static S9_PRIM sqlar_primitives[] = {
<<sqlar_scheme_entries>>
{NULL}
};
void s9_load_sqlar(void)
{
add_primitives("sqlar", sqlar_primitives);
}
prev | home | next