c-compat 0.1.0-alpha.1

Allows to easily compile and integrate C libraries in Rust in a cross-platform way
Documentation
#ifndef _STDINT_H
#define _STDINT_H

#include <stddef.h>

/* Common types. */
typedef __INT8_TYPE__ int8_t;
typedef __UINT8_TYPE__ uint8_t;
typedef __INT16_TYPE__ int16_t;
typedef __UINT16_TYPE__ uint16_t;
typedef __INT32_TYPE__ int32_t;
typedef __UINT32_TYPE__ uint32_t;
typedef __INT64_TYPE__ int64_t;
typedef __UINT64_TYPE__ uint64_t;

/* Maximum of signed integral types. */
#define INT8_MAX		__INT8_MAX__
#define INT16_MAX		__INT16_MAX__
#define INT32_MAX		__INT32_MAX__
#define INT64_MAX		__IN64_MAX__

/* Maximum of unsigned integral types. */
#define UINT8_MAX		__UINT8_MAX__
#define UINT16_MAX		__UINT16_MAX__
#define UINT32_MAX		__UINT32_MAX__
#define UINT64_MAX		__UINT64_MAX__

/* Optional types. */
typedef __UINTPTR_TYPE__ uintptr_t;
#define UINTPTR_MAX __UINTPTR_MAX__
typedef __INTPTR_TYPE__ intptr_t;

#endif