add item access
This commit is contained in:
@@ -12,13 +12,17 @@ extern ArgonObject *ARGON_STRING_TYPE;
|
||||
|
||||
char *c_quote_string(const char *input, size_t len);
|
||||
|
||||
void init_string(ArgonObject*object,char *data, size_t length, uint64_t prehash,
|
||||
void init_string(ArgonObject *object, char *data, size_t length,
|
||||
uint64_t prehash, uint64_t hash);
|
||||
|
||||
char *argon_object_to_null_terminated_string(ArgonObject *object, ArErr *err,
|
||||
RuntimeState *state);
|
||||
|
||||
ArgonObject *new_string_object_without_memcpy(char *data, size_t length,
|
||||
uint64_t prehash, uint64_t hash);
|
||||
|
||||
ArgonObject *new_string_object(char *data, size_t length, uint64_t prehash,
|
||||
uint64_t hash);
|
||||
|
||||
ArgonObject *new_string_object_without_memcpy(char *data, size_t length, uint64_t prehash,
|
||||
uint64_t hash);
|
||||
|
||||
ArgonObject *new_string_object(char *data, size_t length, uint64_t prehash, uint64_t hash);
|
||||
|
||||
ArgonObject *new_string_object_null_terminated(char*data);
|
||||
ArgonObject *new_string_object_null_terminated(char *data);
|
||||
#endif // STRING_OBJ_H
|
||||
Reference in New Issue
Block a user