chiark / gitweb /
36389b7710b4589e42ff79519cb65f17ed740cac
[elogind.git] / src / test / test-sizeof.c
1 /***
2   This file is part of systemd.
3
4   Copyright 2016 Zbigniew Jędrzejewski-Szmek
5
6   systemd is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as published by
8   the Free Software Foundation; either version 2.1 of the License, or
9   (at your option) any later version.
10
11   systemd is distributed in the hope that it will be useful, but
12   WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14   Lesser General Public License for more details.
15
16   You should have received a copy of the GNU Lesser General Public License
17   along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <stdio.h>
21
22 #include "time-util.h"
23
24 /* Print information about various types. Useful when diagnosing
25  * gcc diagnostics on an unfamiliar architecture. */
26
27 #pragma GCC diagnostic ignored "-Wtype-limits"
28
29 #define info(t)                                                 \
30         printf("%s → %zu bits%s\n", STRINGIFY(t),               \
31                sizeof(t)*CHAR_BIT,                              \
32                strstr(STRINGIFY(t), "signed") ? "" :            \
33                ((t)-1 < (t)0 ? ", signed" : ", unsigned"));
34
35 int main(void) {
36         info(char);
37         info(signed char);
38         info(unsigned char);
39         info(short unsigned);
40         info(unsigned);
41         info(long unsigned);
42         info(long long unsigned);
43         info(__syscall_ulong_t);
44         info(__syscall_slong_t);
45
46         info(float);
47         info(double);
48         info(long double);
49
50         info(size_t);
51         info(ssize_t);
52         info(time_t);
53         info(usec_t);
54         info(__time_t);
55
56         return 0;
57 }