-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcommon.c
101 lines (82 loc) · 2.03 KB
/
common.c
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
* Copyright (C) 2013, 2014 Giorgio Vazzana
*
* This file is part of Seren.
*
* Seren is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Seren is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include "common.h"
void (*die_cb)(const char *msg, int exit_code);
void die(const char *msg, int exit_code)
{
if (die_cb)
die_cb(msg, exit_code);
fputs("\nOops, there was a problem and the program was terminated:\n\n", stderr);
fputs(msg, stderr);
fputs("\n\n", stderr);
exit(exit_code);
}
void *xmalloc(size_t size)
{
void *m;
m = malloc(size);
if (m == NULL)
die("malloc() failed", 1);
return m;
}
void *xcalloc(size_t nmemb, size_t size)
{
void *m;
m = calloc(nmemb, size);
if (m == NULL)
die("calloc() failed", 1);
return m;
}
const char *ts2datetime(time_t ts)
{
static char str[32];
struct tm *t;
t = localtime(&ts);
if (t)
sprintf(str, "%04d/%02d/%02d %02d:%02d:%02d",
t->tm_year+1900, t->tm_mon+1, t->tm_mday,
t->tm_hour, t->tm_min, t->tm_sec);
else
sprintf(str, "----/--/-- --:--:--");
return str;
}
const char *ts2time(time_t ts)
{
static char str[16];
struct tm *t;
t = localtime(&ts);
if (t)
sprintf(str, "%02d:%02d:%02d", t->tm_hour, t->tm_min, t->tm_sec);
else
sprintf(str, "--:--:--");
return str;
}
size_t utf8_bytes_in_sequence(unsigned char first_byte)
{
if ((first_byte & 0x80) == 0)
return 1;
else if ((first_byte & 0xE0) == 0xC0)
return 2;
else if ((first_byte & 0xF0) == 0xE0)
return 3;
else
return 4;
}