摘要:
假设c语言写的二个函数为void hello_user(const char *name) { printf("Hello, %s.\n", name); return;}void goodbye() { printf("Goodbye!\n"); return;}如果想在chibi-scheme中调用c写的函数第一步,建stub文件可以建一个test.stub文件,内容如下(define-c void hello-user (string))(define-c void (so-long goodbye) ())默认会把hello-user转化为c语言 阅读全文