src/vflmklib.h
/* [<][>][^][v][top][bottom][index][help] */
FUNCTIONS
This source file includes following functions.
1 /*
2 * vflmklib.h
3 *
4 * by Hirotsugu Kakugawa
5 *
6 * 10 May 2001
7 */
8 /*
9 * Copyright (C) 2001 Hirotsugu Kakugawa.
10 * All rights reserved.
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 */
26
27 #ifndef __VFLIBMKLIB_H__
28 #define __VFLIBMKLIB_H__
29
30 extern char* copy_cmdline(int,char**);
31 extern void banner(char*,char*,char*);
32 extern char* x_strdup(char*);
33 extern char* check_font_exist(char*,char**,int,int,char**);
34 extern void check_argc(int);
35 extern int map_need_tfm(char*);
36
37 #endif /* __VFLIBMKLIB_H__ */
38