1 #ifndef GLPRINTF_HEADER
2 #define GLPRINTF_HEADER
3 
4 void glprintf(const char *fmt, ...);
5 void scaledglprintf(float sx,float sy,const char *fmt, ...);	/* center alignment */
6 void scaledglprintf2(float sx,float sy,const char *fmt, ...);	/* left alignment */
7 void fittedglprintf(float sx,float sy,const char *fmt, ...);
8 
9 #endif
10