source: tags/initial/GDE/PHYLIP/interface.h

Last change on this file was 2, checked in by oldcode, 24 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 636 bytes
Line 
1/* interface.h:  access to interface.c, a 2 window text/graphics
2    environment, with a scrolling text window and c-like I/O functions.
3    This also sets up some defines for the standard c stuff. */
4
5#define printf  macprintf
6#define gets    macgets
7#define scanf   macscanf
8#define puts    macputs
9#undef putchar
10#define putchar macputchar
11#undef getchar
12#define getchar() '\n'
13#define fflush(file) macflush()
14#define exit(x) eventloop()
15void macprintf(char *,...);
16int macscanf(char *,...);
17void macsetup(char *,char *);
18void macgets(char *);
19void macputs(char *);
20void eventloop();
21void queryevent();
22void fixmacfile(char *);
23
24
25
26
27
Note: See TracBrowser for help on using the repository browser.