10 lines
110 B
C
10 lines
110 B
C
|
|
#ifndef STRUCT_BOOLEAN_VALUE
|
|
#define STRUCT_BOOLEAN_VALUE
|
|
|
|
struct boolean_value
|
|
{
|
|
bool value;
|
|
};
|
|
|
|
#endif
|