Carp/core/carp_bool.h
2018-11-17 15:42:36 +01:00

15 lines
187 B
C

#include "carp_stdbool.h"
// Bool
bool Bool_copy(bool* b) {
return *b;
}
bool Bool__EQ_(bool a, bool b) {
return a == b;
}
bool Bool__DIV__EQ_(bool a, bool b) {
return a != b;
}