mirror of
https://github.com/samsonjs/lake.git
synced 2026-03-25 08:55:49 +00:00
14 lines
No EOL
284 B
C
14 lines
No EOL
284 B
C
#ifndef _INT_H
|
|
#define _INT_H 1
|
|
|
|
#include "lake.h"
|
|
|
|
LakeInt *int_make(void);
|
|
LakeInt *int_copy(LakeInt *i);
|
|
LakeInt *int_from_c(int n);
|
|
int int_val(LakeInt *i);
|
|
LakeInt *int_cmp(LakeInt *a, LakeInt *b);
|
|
LakeSym *int_eq(LakeInt *a, LakeInt *b);
|
|
LakeStr *int_to_str(LakeInt *i);
|
|
|
|
#endif |