60 lines
1.6 KiB
C
60 lines
1.6 KiB
C
/* stdint.h */
|
|
|
|
/*
|
|
* Copyright (c) 2014 Wind River Systems, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef __INC_stdint_h__
|
|
#define __INC_stdint_h__
|
|
|
|
#define INT8_MAX 0x7F
|
|
#define INT16_MAX 0x7FFF
|
|
#define INT32_MAX 0x7FFFFFFF
|
|
#define INT64_MAX 0x7FFFFFFFFFFFFFFFll
|
|
|
|
#define INT8_MIN (-INT8_MAX - 1)
|
|
#define INT16_MIN (-INT16_MAX - 1)
|
|
#define INT32_MIN (-INT32_MAX - 1)
|
|
#define INT64_MIN (-INT64_MAX - 1ll)
|
|
|
|
#define UINT8_MAX 0xFF
|
|
#define UINT16_MAX 0xFFFF
|
|
#define UINT32_MAX 0xFFFFFFFFu
|
|
#define UINT64_MAX 0xFFFFFFFFFFFFFFFFull
|
|
|
|
#define INTPTR_MIN INT32_MIN
|
|
#define INTPTR_MAX INT32_MAX
|
|
#define UINTPTR_MAX UINT32_MAX
|
|
|
|
#define PTRDIFF_MIN INT32_MIN
|
|
#define PTRDIFF_MAX INT32_MAX
|
|
|
|
#define SIZE_MAX UINT32_MAX
|
|
|
|
typedef signed char int8_t;
|
|
typedef signed short int16_t;
|
|
typedef signed int int32_t;
|
|
typedef signed long long int64_t;
|
|
|
|
typedef unsigned char uint8_t;
|
|
typedef unsigned short uint16_t;
|
|
typedef unsigned int uint32_t;
|
|
typedef unsigned long long uint64_t;
|
|
|
|
typedef int intptr_t;
|
|
typedef unsigned int uintptr_t;
|
|
|
|
#endif /* __INC_stdint_h__ */
|