21 lines
265 B
C
21 lines
265 B
C
#ifndef INCLUDED_STRING_H
|
|
#define INCLUDED_STRING_H
|
|
|
|
#include "lisp/array.h"
|
|
#include "lisp/util.h"
|
|
|
|
LISP_BEGIN_DECLS
|
|
|
|
DECLARE_CLASS(String);
|
|
|
|
struct String {
|
|
Array base;
|
|
bool borrowed;
|
|
};
|
|
struct StringClass {
|
|
ArrayClass base;
|
|
};
|
|
|
|
LISP_END_DECLS
|
|
#endif
|