mirror of
https://github.com/samsonjs/lake.git
synced 2026-03-25 08:55:49 +00:00
19 lines
300 B
C
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
|