home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / othergnu / texinf~1.zoo / texinfo.st / texi2roff / proto.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-17  |  798 b   |  29 lines

  1. #ifndef __PROTO
  2. #if defined(__STDC__) || defined(__cplusplus)
  3. # define __PROTO(s) s
  4. #else
  5. # define __PROTO(s) ()
  6. #endif
  7. #endif
  8.  
  9.  
  10. /* items.c */
  11. char *itemize __PROTO((char *s, char *token));
  12. char *doitem __PROTO((char *s, char *tag));
  13.  
  14. /* table.c */
  15. void initialize __PROTO((int macropkg, int showInfo, int makeindex));
  16. struct tablerecd *lookup __PROTO((char *token));
  17.  
  18. /* texi2roff.c */
  19. int main __PROTO((int argc, char *argv[]));
  20. int process __PROTO((FILE *fp, char *filename));
  21.  
  22. /* translate.c */
  23. void errormsg __PROTO((char *message, char *other));
  24. int translate __PROTO((FILE *in, char *inname));
  25. char *interpret __PROTO((char *token, char *outstring));
  26. char *eatwhitespace __PROTO((char *s));
  27. char *strpbrk_like __PROTO((char *str, char *set));
  28. char *gettoken __PROTO((char *s, char *token));
  29.