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