1 /** \file test-integers.c
2 * \brief Check assumptions about integer types (sizes, ranges).
3 *
4 * Copyright (C) 2007 Hans Ulrich Niedermann <gp@n-dimensional.de>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but 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
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301 USA.
20 *
21 * SPDX-License-Identifier: LGPL-2.0-or-later
22 */
23
24
25 #include "libexif/_stdint.h"
26 #include <assert.h>
27
28 typedef enum {
29 EN_A,
30 EN_B,
31 EN_C,
32 EN_D,
33 EN_E,
34 EN_F
35 } enum_t;
36
main(void)37 int main(void)
38 {
39 /* libexif assumes unsigned ints are not smaller than 32bit in many places */
40 assert(sizeof(unsigned int) >= sizeof(uint32_t));
41
42 /* libexif assumes that enums fit into ints */
43 assert(sizeof(enum_t) <= sizeof(int));
44
45 return 0;
46 }
47