2005-02-15 19:45:38 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Dave Chapman
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2005-02-15 19:45:38 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-05-06 21:04:40 +00:00
|
|
|
#ifndef __STDINT_H__
|
|
|
|
#define __STDINT_H__
|
2008-08-29 21:08:38 +00:00
|
|
|
|
2006-03-03 01:12:50 +00:00
|
|
|
#include <limits.h>
|
2005-02-15 19:45:38 +00:00
|
|
|
|
2006-03-03 01:12:50 +00:00
|
|
|
/* 8 bit */
|
2007-04-10 09:43:06 +00:00
|
|
|
#define INT8_MIN SCHAR_MIN
|
|
|
|
#define INT8_MAX SCHAR_MAX
|
|
|
|
#define UINT8_MAX UCHAR_MAX
|
|
|
|
#define int8_t signed char
|
|
|
|
#define uint8_t unsigned char
|
2006-03-03 01:12:50 +00:00
|
|
|
|
|
|
|
/* 16 bit */
|
|
|
|
#if USHRT_MAX == 0xffff
|
2007-04-10 09:43:06 +00:00
|
|
|
|
|
|
|
#define INT16_MIN SHRT_MIN
|
|
|
|
#define INT16_MAX SHRT_MAX
|
|
|
|
#define UINT16_MAX USHRT_MAX
|
|
|
|
#define int16_t short
|
|
|
|
#define uint16_t unsigned short
|
|
|
|
|
2006-03-03 01:12:50 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* 32 bit */
|
|
|
|
#if ULONG_MAX == 0xfffffffful
|
2007-04-10 09:43:06 +00:00
|
|
|
|
|
|
|
#define INT32_MIN LONG_MIN
|
|
|
|
#define INT32_MAX LONG_MAX
|
|
|
|
#define UINT32_MAX ULONG_MAX
|
|
|
|
#define int32_t long
|
|
|
|
#define uint32_t unsigned long
|
|
|
|
|
|
|
|
#define INTPTR_MIN LONG_MIN
|
|
|
|
#define INTPTR_MAX LONG_MAX
|
|
|
|
#define UINTPTR_MAX ULONG_MAX
|
|
|
|
#define intptr_t long
|
|
|
|
#define uintptr_t unsigned long
|
|
|
|
|
2006-03-03 01:12:50 +00:00
|
|
|
#elif UINT_MAX == 0xffffffffu
|
2007-04-10 09:43:06 +00:00
|
|
|
|
|
|
|
#define INT32_MIN INT_MIN
|
|
|
|
#define INT32_MAX INT_MAX
|
|
|
|
#define UINT32_MAX UINT_MAX
|
|
|
|
#define int32_t int
|
|
|
|
#define uint32_t unsigned int
|
|
|
|
|
2006-03-03 01:12:50 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* 64 bit */
|
2007-04-10 09:43:06 +00:00
|
|
|
#ifndef LLONG_MIN
|
|
|
|
#define LLONG_MIN ((long long)9223372036854775808ull)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef LLONG_MAX
|
|
|
|
#define LLONG_MAX 9223372036854775807ll
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef ULLONG_MAX
|
|
|
|
#define ULLONG_MAX 18446744073709551615ull
|
|
|
|
#endif
|
|
|
|
|
2006-03-03 01:12:50 +00:00
|
|
|
#if ULONG_MAX == 0xffffffffffffffffull
|
2007-04-10 09:43:06 +00:00
|
|
|
|
|
|
|
#define INT64_MIN LONG_MIN
|
|
|
|
#define INT64_MAX LONG_MAX
|
|
|
|
#define UINT64_MAX ULONG_MAX
|
|
|
|
#define int64_t long
|
|
|
|
#define uint64_t unsigned long
|
|
|
|
|
|
|
|
#define INTPTR_MIN LONG_MIN
|
|
|
|
#define INTPTR_MAX LONG_MAX
|
|
|
|
#define UINTPTR_MAX ULONG_MAX
|
|
|
|
#define intptr_t long
|
|
|
|
#define uintptr_t unsigned long
|
|
|
|
|
2006-03-03 01:12:50 +00:00
|
|
|
#else
|
2007-04-10 09:43:06 +00:00
|
|
|
|
|
|
|
#define INT64_MIN LLONG_MIN
|
|
|
|
#define INT64_MAX LLONG_MAX
|
|
|
|
#define UINT64_MAX ULLONG_MAX
|
|
|
|
#define int64_t long long
|
|
|
|
#define uint64_t unsigned long long
|
|
|
|
|
2006-03-03 01:12:50 +00:00
|
|
|
#endif
|
2005-02-15 19:45:38 +00:00
|
|
|
|
2010-05-06 21:04:40 +00:00
|
|
|
#endif /* __STDINT_H__ */
|