mirror of
https://github.com/janet-lang/janet
synced 2024-11-14 12:44:49 +00:00
3794ec3acd
* Fix up while special form * Change Value functions to pass-by-value
19 lines
372 B
C
19 lines
372 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(VM * vm, const char * string);
|
|
|
|
uint8_t * ValueToString(VM * vm, Value x);
|
|
|
|
uint32_t ValueHash(Value x);
|
|
|
|
#endif /* end of include guard: VALUE_H_1RJPQKFM */
|