home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
273_01
/
getattr.cc
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1987-11-04
|
244 b
|
12 lines
int get_attr(int row, int col)
/* Get the attribute at the specified row and col.
RETURNED is attr
*/
{
extern color, mono, cga, ega, scrseg, bios;
int attr;
unsigned int scrofs;
sread_a(row,col,&attr);
return(attr);
}