Dillo v3.1.1-46-g8a360e32
Loading...
Searching...
No Matches
d_size.h
Go to the documentation of this file.
1#ifndef __D_SIZE_H__
2#define __D_SIZE_H__
3
4
5#include "config.h"
6
7#ifdef HAVE_STDINT_H
8#include <stdint.h>
9#else
10#ifdef HAVE_INTTYPES_H
11#include <inttypes.h>
12#else
13/* config.h defines {int,uint}*_t */
14#endif /* HAVE_INTTYPES_H */
15#endif /*HAVE_STDINT_H */
16
17typedef unsigned char uchar_t;
18typedef unsigned short ushort_t;
19typedef unsigned long ulong_t;
20typedef unsigned int uint_t;
21typedef unsigned char bool_t;
22
23
24#endif /* __D_SIZE_H__ */
unsigned char uchar_t
Definition d_size.h:17
unsigned int uint_t
Definition d_size.h:20
unsigned char bool_t
Definition d_size.h:21
unsigned long ulong_t
Definition d_size.h:19
unsigned short ushort_t
Definition d_size.h:18