summary refs log tree commit diff
path: root/.bin/clock.c
blob: 9eb4dc23e912d8108598396725a392048f7eb668 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#if 0
exec cc -Wall -Wextra -pedantic $@ -o $(dirname $0)/clock $0
#endif

#include <time.h>
#include <stdio.h>
#include <sysexits.h>
#include <err.h>

int main() {
    time_t timestamp = time(NULL);
    if (timestamp < 0) err(EX_OSERR, "time");

    struct tm *clock = localtime(&timestamp);
    if (!clock) err(EX_OSERR, "localtime");

    switch ((clock->tm_min + 5) / 10) {
        case 0: printf("...%02d...\n", clock->tm_hour); break;
        case 1: printf("..%02d....\n", clock->tm_hour); break;
        case 2: printf(".%02d.....\n", clock->tm_hour); break;
        case 3: printf("%02d....%02d\n", clock->tm_hour, clock->tm_hour + 1); break;
        case 4: printf(".....%02d.\n", clock->tm_hour + 1); break;
        case 5: printf("....%02d..\n", clock->tm_hour + 1); break;
        case 6: printf("...%02d...\n", clock->tm_hour + 1); break;
    }

    return 0;
}