mirror of
https://github.com/samsonjs/lake.git
synced 2026-03-25 08:55:49 +00:00
20 lines
328 B
C
20 lines
328 B
C
/**
|
|
* primitive.h
|
|
* Lake Scheme
|
|
*
|
|
* Copyright 2011 Sami Samhuri
|
|
* MIT License
|
|
*
|
|
*/
|
|
|
|
#ifndef _LAKE_PRIMITIVE_H
|
|
#define _LAKE_PRIMITIVE_H 1
|
|
|
|
#include "env.h"
|
|
#include "lake.h"
|
|
|
|
LakePrimitive *prim_make(char *name, int arity, lake_fn fn);
|
|
char *prim_repr(LakePrimitive *prim);
|
|
Env *primitive_bindings(void);
|
|
|
|
#endif
|