mirror of
https://github.com/janet-lang/janet
synced 2025-01-26 15:16:51 +00:00
19 lines
386 B
C
19 lines
386 B
C
|
#ifndef VALUE_H_1RJPQKFM
|
||
|
#define VALUE_H_1RJPQKFM
|
||
|
|
||
|
#include "datatypes.h"
|
||
|
|
||
|
void ValuePrint(Value * x, uint32_t indent);
|
||
|
|
||
|
int ValueCompare(Value * x, Value * y);
|
||
|
|
||
|
int ValueEqual(Value * x, Value * y);
|
||
|
|
||
|
Value ValueLoadCString(GC * gc, const char * string);
|
||
|
|
||
|
uint8_t * ValueToString(GC * gc, Value * x);
|
||
|
|
||
|
uint32_t ValueHash(Value * x);
|
||
|
|
||
|
#endif /* end of include guard: VALUE_H_1RJPQKFM */
|