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 32 33 34 35 36
|
// -*- 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 22 20:43:25 EET 1997 (proff@alf.melmac)
// created file fontedit.h
#ifndef __fontedit_h
#define __fontedit_h
#include <stdio.h>
#include <string.h>
#include <getopt.h>
#include "gdev-svgalib.h"
#include "fontutils.h"
void usage( void );
void parseargs( int argc, char **argv );
void edit( char *fn );
#endif // __fontedit_h
|