mirror of
https://github.com/samsonjs/lake.git
synced 2026-03-25 08:55:49 +00:00
23 lines
No EOL
372 B
C
23 lines
No EOL
372 B
C
#include "laketest.h"
|
|
|
|
/**
|
|
* sym.h
|
|
* Lake Scheme
|
|
*
|
|
* Copyright 2011 Sami Samhuri
|
|
* MIT License
|
|
*
|
|
*/
|
|
|
|
#ifndef _LAKE_SYM_H
|
|
#define _LAKE_SYM_H
|
|
|
|
#include "lake.h"
|
|
|
|
LakeSym *sym_intern(LakeCtx *ctx, char *s);
|
|
LakeStr *sym_to_str(LakeSym *sym);
|
|
LakeSym *sym_from_str(LakeCtx *ctx, LakeStr *str);
|
|
char *sym_repr(LakeSym *sym);
|
|
unsigned long sym_val(LakeSym *sym);
|
|
|
|
#endif |