blob: 9f326c5c9e2b5667986c883d2e3066c04fb13c04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <limits.h>
#define USHRT_MAX (65535)
/** unsigned short maximum **/
/***
is the maximum value representable as a TYPE(unsigned short int).
***/
/*
VALUE_MIN(65535)
*/
/*
STDC(1)
*/
|