code format

This commit is contained in:
Dominik Maier
2020-05-01 01:11:54 +02:00
parent bb7d2a7347
commit cc78fb721b
4 changed files with 44 additions and 44 deletions

View File

@ -20,8 +20,7 @@
void testinstr(char *buf, int len) {
if (len < 1)
return;
if (len < 1) return;
buf[len] = 0;
// we support three input cases
@ -33,3 +32,4 @@ void testinstr(char *buf, int len) {
printf("Neither one or zero? How quaint!\n");
}