Initial commit

This commit is contained in:
2025-06-28 16:47:23 +09:00
commit 5b6bd50f45
10 changed files with 2007 additions and 0 deletions

15
src/read.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef INCLUDED_READ_H
#define INCLUDED_READ_H
#include "lisp.h"
#include <stddef.h>
typedef enum {
SEVERITY_WARN,
SEVERITY_ERROR,
} ReadErrorSeverity;
size_t read_from_buffer(const char *text, size_t length, LispVal **out);
#endif