home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume27 / psf3 / part04 / psfproto.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-20  |  1.4 KB  |  68 lines

  1. #ifdef __STDC__
  2. /* psf.c */
  3. int main(int argc, char *argv[]);
  4. void scale_factors(void);
  5. void prologue(void);
  6. void showpage(int end_of_file);
  7. void set_frame(void);
  8. void set_y_coord(void);
  9. void put_top(void);
  10. void process_file(void);
  11. int escape_sequence(int which);
  12. void moveto(int x, int y, int do_move);
  13. void findfont(void);
  14. void start_file(void);
  15. void terminate_printer(void);
  16. void draw_cross(void);
  17. void set_clip_path(int x1, int y1, int x2, int y2);
  18. void output_book(char *bookfile);
  19. int tscan(char s[], char t[]);
  20. void get_time(char *t);
  21. int compare(char *a, char *b);
  22. int partial_compare(char *a, char *b);
  23. int comparen(char *a, char *b, int n);
  24. int endcompare(char *a, char *b);
  25. void trim(char *s);
  26. void bad_file(void);
  27. int xtoi(int c);
  28. void catch(int signo);
  29. void replacement_fonts(void);
  30. int otoi(char *s);
  31. void usage(void);
  32. void size_display(void);
  33. void output_trouble(int);
  34. #else
  35. /* psf.c */
  36. int main();
  37. void scale_factors();
  38. void prologue();
  39. void showpage();
  40. void set_frame();
  41. void set_y_coord();
  42. void put_top();
  43. void process_file();
  44. int escape_sequence();
  45. void moveto();
  46. void findfont();
  47. void start_file();
  48. void terminate_printer();
  49. void draw_cross();
  50. void set_clip_path();
  51. void output_book();
  52. int tscan();
  53. void get_time();
  54. int compare();
  55. int partial_compare();
  56. int comparen();
  57. int endcompare();
  58. void trim();
  59. void bad_file();
  60. int xtoi();
  61. void catch();
  62. void replacement_fonts();
  63. int otoi();
  64. void usage();
  65. void size_display();
  66. void output_trouble();
  67. #endif
  68.