12 lines
130 B
C
12 lines
130 B
C
#include <stdio.h>
|
|
|
|
/*-
|
|
bool checkit(bool expr);
|
|
checks if an exprssion is true.
|
|
-*/
|
|
|
|
_Bool checkit(_Bool expr)
|
|
{
|
|
return expr;
|
|
}
|