Added false and true

This commit is contained in:
qorg11 2020-06-04 01:53:52 +02:00
parent aff3c77b37
commit d2be0fee2d
No known key found for this signature in database
GPG Key ID: 343FC20A4ACA62B9
2 changed files with 10 additions and 0 deletions

5
src/false.c Normal file
View File

@ -0,0 +1,5 @@
int
main(void)
{
return 1;
}

5
src/true.c Normal file
View File

@ -0,0 +1,5 @@
int
main(void)
{
return 0;
}