File: fontutils.h

package info (click to toggle)
sabre 0.2.4b-26
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 6,108 kB
  • ctags: 7,208
  • sloc: cpp: 36,842; ansic: 8,272; sh: 2,619; makefile: 213
file content (31 lines) | stat: -rw-r--r-- 745 bytes parent folder | download | duplicates (6)
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