start creating base objects for runtime
This commit is contained in:
11
src/runtime/objects/string/string.h
Normal file
11
src/runtime/objects/string/string.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#ifndef STRING_OBJ_H
|
||||
#define STRING_OBJ_H
|
||||
#include "../object.h"
|
||||
|
||||
extern ArgonObject *ARGON_STRING_TYPE;
|
||||
|
||||
void init_string_type();
|
||||
|
||||
ArgonObject *init_string_object(char*data, size_t length);
|
||||
|
||||
#endif // STRING_OBJ_H
|
||||
Reference in New Issue
Block a user