1 /*
2  * $Id: getmaxcolor.c,v 0.1 1993/12/10 00:15:31 king Exp king $
3  * Returns the maximum colour value that can be passed to the setcolor()
4  * function.
5  *
6  * $Log: getmaxcolor.c,v $
7  * Revision 0.1  1993/12/10  00:15:31  king
8  * Initial version.
9  *
10  */
11 #include "graphics.h"
12 
getmaxcolor(void)13 int getmaxcolor(void)
14 {
15 /* currently supports the colours used by EGAVGA.BGI */
16         return (int) WHITE;
17 }
18