7 lines
95 B
C
7 lines
95 B
C
|
|
#include <stdbool.h>
|
|
|
|
struct value* new_boolean_value(
|
|
struct gc* gc,
|
|
bool literal);
|
|
|