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 >
C/C++ Source or Header  |  1996-10-12  |  390b  |  20 lines

  1. /* fnget.h
  2.    Graham Asher  */
  3.  
  4. #ifndef FONTNAME_H_
  5. #define FONTNAME_H_ 1
  6.  
  7. #if __STDC__
  8. #include <stddef.h> /* for size_t */
  9. #endif
  10.  
  11. /* This is a pretty kludgy way to get around prototypes, but at least
  12.    non-STDC compilers won't bomb out.  --karl@cs.umb.edu  */
  13. extern int FNget (
  14. #if __STDC__
  15.   char *dest, size_t size, char *filename, char *template
  16. #endif
  17. );
  18.  
  19. #endif /* FONTNAME_H_ */
  20.