lake/comment.h
2011-04-20 18:45:50 -07:00

19 lines
300 B
C

/**
* comment.h
* Lake Scheme
*
* Copyright 2011 Sami Samhuri
* MIT License
*
*/
#ifndef _LAKE_COMMENT_H
#define _LAKE_COMMENT_H 1
#include "lake.h"
LakeComment *comment_make(LakeStr *text);
LakeComment *comment_from_c(char *text);
char *comment_repr(LakeComment *comment);
#endif