picrin/contrib/20.r7rs/src/load.c

40 lines
616 B
C
Raw Normal View History

/**
* See Copyright Notice in picrin.h
*/
#include "picrin.h"
2016-02-20 10:58:58 -05:00
#include "picrin/extra.h"
2016-02-18 15:54:50 -05:00
#include <stdio.h>
static pic_value
pic_load_load(pic_state *pic)
{
2016-02-20 02:51:24 -05:00
pic_value envid, port;
char *fn;
2016-02-18 15:54:50 -05:00
FILE *fp;
pic_get_args(pic, "z|o", &fn, &envid);
2016-02-18 15:54:50 -05:00
fp = fopen(fn, "r");
if (fp == NULL) {
2016-02-22 14:03:42 -05:00
pic_error(pic, "load: could not open file", 1, pic_cstr_value(pic, fn));
2016-02-18 15:54:50 -05:00
}
2016-06-19 15:49:01 -04:00
port = pic_fopen(pic, fp, "r");
2015-07-12 19:20:07 -04:00
pic_load(pic, port);
2016-06-19 15:49:01 -04:00
pic_fclose(pic, port);
return pic_undef_value(pic);
}
void
pic_init_load(pic_state *pic)
{
pic_deflibrary(pic, "scheme.load");
pic_defun(pic, "load", pic_load_load);
}