lake/src/int.h
2011-04-24 20:39:22 -07:00

20 lines
No EOL
276 B
C

/**
* int.h
* Lake Scheme
*
* Copyright 2011 Sami Samhuri
* MIT License
*
*/
#ifndef _LAKE_INT_H
#define _LAKE_INT_H 1
#include "lake.h"
LakeInt *int_make(void);
LakeInt *int_from_c(int n);
LakeStr *int_to_str(LakeInt *i);
char *int_repr(LakeInt *i);
#endif