1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
// -*- mode: C; -*-
// jed does not understand .C
//
// Minefields:
//
// This code is mine. You may use, modify or redistribute this code
// in any APPROPRIATE manner you may choose.
//
// If you use, modify or redistribute this code, I am NOT responsible
// for ANY issue raised.
//
// ( If you modify or remove this note, this code is no longer mine. )
//
// proff@iki.fi
//
//
// Mon Dec 29 16:40:06 EET 1997 (proff@alf.melmac)
// created file fontutils.h
#ifndef __fontutils_h
#define __fontutils_h
#include "fontdev.h"
void gputc( fontdev *f, int x, int y, int c, int ascii );
void gputs( fontdev *f, int x, int y, int c, char *s );
void gprintf( fontdev *f, int x, int y, int c, char *fmt, ... );
#endif // __fontutils_h
|