mirror of
https://github.com/samsonjs/lake.git
synced 2026-03-25 08:55:49 +00:00
19 lines
No EOL
286 B
C
19 lines
No EOL
286 B
C
/**
|
|
* fn.h
|
|
* Lake Scheme
|
|
*
|
|
* Copyright 2011 Sami Samhuri
|
|
* MIT License
|
|
*
|
|
*/
|
|
|
|
#ifndef _LAKE_FN_H
|
|
#define _LAKE_FN_H 1
|
|
|
|
#include "env.h"
|
|
#include "lake.h"
|
|
|
|
LakeFn *fn_make(LakeList *params, LakeSym *varargs, LakeList *body, Env *closure);
|
|
char *fn_repr(LakeFn *fn);
|
|
|
|
#endif |