summaryrefslogtreecommitdiff
path: root/test/test-logic-not.c
blob: a3a3e4de2e3403a89f72b2b3c3140a2dd0010765 (plain)
1
2
3
4
5
6
7
8
#include <assert.h>

#include "logic.h"

int main(void) {
	assert(LOGIC_HIGH == logic_not(LOGIC_LOW ));
	assert(LOGIC_LOW  == logic_not(LOGIC_HIGH));
}