home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / datetime / navytime / comm.h < prev    next >
Encoding:
Text File  |  1987-06-26  |  477 b   |  10 lines

  1. /* comm.h -- header file for communications port i/o                        */
  2.  
  3. int                     comm_open(unsigned unit, unsigned baud, int parity,
  4.                                   int stop, int wordsize);
  5. void                    comm_close_all(void);
  6. void                    comm_close(unsigned unit);
  7. int                     comm_getc(unsigned unit);
  8. void                    comm_clr(unsigned unit);
  9. int                     comm_putc(unsigned unit, int c);
  10.