|
typedef unsigned short int u_int16_t;System V等古い実装では、次のtypedefが存在する。POSIX準拠の実装(_POSIX_SOURCE定義)では使用できない。
typedef unsigned short ushort;BSD系を中心に、次のtypedefが存在する。POSIX準拠の実装(_POSIX_SOURCE定義)では使用できない。
typedef unsigned short u_short;Windowsでは、次のtypedefが存在する。
typedef unsigned short USHORT;
typedef unsigned short WORD;