home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
unixtex-6.1b-bin0.lha
/
lib
/
texmf
/
doc
/
fontname
/
fnget.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-10-12
|
390b
|
20 lines
/* fnget.h
Graham Asher */
#ifndef FONTNAME_H_
#define FONTNAME_H_ 1
#if __STDC__
#include <stddef.h> /* for size_t */
#endif
/* This is a pretty kludgy way to get around prototypes, but at least
non-STDC compilers won't bomb out. --karl@cs.umb.edu */
extern int FNget (
#if __STDC__
char *dest, size_t size, char *filename, char *template
#endif
);
#endif /* FONTNAME_H_ */