4-variable-simplifier/structs/operators.h
2026-04-25 16:00:10 -04:00

12 lines
123 B
C

#ifndef STRUCT_OPERATORS
#define STRUCT_OPERATORS
struct operators
{
bool not;
bool or;
bool and;
};
#endif