libdom
Loading...
Searching...
No Matches
inttypes.h
Go to the documentation of this file.
1/*
2 * This file is part of libdom.
3 * Licensed under the MIT License,
4 * http://www.opensource.org/licenses/mit-license.php
5 * Copyright 2015 Vincent Sanders <vince@netsurf-browser.org>
6 */
7
8#ifndef dom_inttypes_h_
9#define dom_inttypes_h_
10
11#include <stdint.h>
12
16typedef int16_t dom_short;
17
21typedef uint16_t dom_ushort;
22
26typedef int32_t dom_long;
27
31typedef uint32_t dom_ulong;
32
33#endif
int16_t dom_short
Definition inttypes.h:16
int32_t dom_long
Definition inttypes.h:26
uint32_t dom_ulong
Definition inttypes.h:31
uint16_t dom_ushort
Definition inttypes.h:21