lisp-take-1/value/boolean/struct.h
2024-11-28 18:36:25 -06:00

10 lines
110 B
C

#ifndef STRUCT_BOOLEAN_VALUE
#define STRUCT_BOOLEAN_VALUE
struct boolean_value
{
bool value;
};
#endif