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