|
#include <stdint.h>
#include <cstdint>
typedef unsigned char __uint8_t;/usr/include/sys/_stdint.h
typedef __uint8_t uint8_t;x86用FreeBSDでは、間接的にunsigned charで定義される。
#define UINT8_MAX 0xff
typedef unsigned char uint8_t;また、stdint.h に、次のような定義がある。
# define UINT8_MAX (255)