Initial commit

This commit is contained in:
2025-09-03 03:20:58 -07:00
commit 1e16b4d34e
20 changed files with 455 additions and 0 deletions

12
include/lisp/util.h Normal file
View File

@ -0,0 +1,12 @@
#ifndef INCLUDED_UTIL_H
#define INCLUDED_UTIL_H
#ifdef __cplusplus
# define LISP_BEGIN_DECLS extern "C" {
# define LISP_END_DECLS }
#else
# define LISP_BEGIN_DECLS
# define LISP_END_DECLS
#endif
#endif