Un-boolify sbase

It actually makes the binaries smaller, the code easier to read
(gems like "val == true", "val == false" are gone) and actually
predictable in the sense of that we actually know what we're
working with (one bitwise operator was quite adventurous and
should now be fixed).

This is also more consistent with the other suckless projects
around which don't use boolean types.
This commit is contained in:
FRIGN
2014-11-13 21:24:47 +01:00
committed by sin
parent 7d2683ddf2
commit ec8246bbc6
41 changed files with 215 additions and 257 deletions

11
cal.c
View File

@@ -1,5 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
@@ -10,7 +9,7 @@
static void drawcal(int, int, int, int, int, int);
static int dayofweek(int, int, int, int);
static bool isleap(int);
static int isleap(int);
static void usage(void);
static void
@@ -59,7 +58,7 @@ drawcal(int year, int month, int day, int ncols, int nmons, int fday)
cur = moff % 12;
yoff = year + moff / 12;
ndays = mdays[cur] + ((cur == 1) & isleap(yoff));
ndays = mdays[cur] + ((cur == 1) && isleap(yoff));
day1 = dayofweek(year, cur, 1, fday);
for (d = 0; d < 7; d++) {
@@ -87,13 +86,13 @@ dayofweek(int year, int month, int day, int fday)
return (year + year / 4 - year / 100 + year / 400 + t[month] + day) % 7;
}
static bool
static int
isleap(int year)
{
if (year % 400 == 0)
return true;
return 1;
if (year % 100 == 0)
return false;
return 0;
return (year % 4 == 0);
}