/******************************************************************************
 * CommAm.h - Serial port wrapper for the Apple II Disk Transfer utility.
 *
 * $Header: Big:Archives/Apple II/AdtAm/Amiga/RCS/CommAm.h,v 1.3 2000/02/02 16:16:01 AGMS Exp $
 *
 * Implemented by Alexander G. M. Smith, Ottawa Canada, agmsmith@achilles.net,
 * agmsmith@bix.com, 71330.3173@compuserve.com, and various other places
 * including the Ottawa Freenet.
 *
 * This code (just the serial port stuff) is put into the public domain
 * by AGMS, so you can copy it, hack it up, sell it, and do whatever
 * you want to it.
 *
 * Compile with the SAS C compiler, version 6.58.
 *
 * $Log: CommAm.h,v $
 * Revision 1.3  2000/02/02  16:16:01  AGMS
 * Uses SAS specific functions now.
 *
 * Revision 1.2  2000/01/30  17:36:24  AGMS
 * Added writing a string to the serial port.
 *
 * Revision 1.1  2000/01/23  18:02:49  AGMS
 * Initial revision
 */

int  comm_open (char *DeviceName, int UnitNumber, unsigned int BaudRate);
void comm_close (void);
void comm_flush (void);
int  comm_avail (void);
void comm_putc (unsigned char c);
void comm_puts (char *String);
int  comm_getc (void);
