Initial commit
This commit is contained in:
15
src/read.h
Normal file
15
src/read.h
Normal 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
|
Reference in New Issue
Block a user