near near -- Non-Standard Type Modifier
A near data item (or function) resides in the default data (or
current code) segment. Its address is 16 bits long.
Notes: Variables declared with class auto are always near, since
they reside on the run-time stack.
-------------------------------- Example ---------------------------------
int near value;
double near table[100];
char near *fpc;
char near **fppc;
char near * near *fpfpc;
long int near * near check(char near, int, int near);
int (near *funptr)();
i = sizeof(char near *);
Seealso:
This page last updated on Fri Nov 30 10:48:32 MSK 2001
Copyright © 1992-2001, Vitaly Filatov, Moscow, Russia
Webmaster