home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0020 - 0029 / ibm0020-0029 / ibm0028.tar / ibm0028 / GRLF-C-1.ZIP / GCOMM / GETTXFRE.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-08-14  |  1.0 KB  |  46 lines

  1. /* gettxfree.c
  2. *
  3. * The Greenleaf Comm Library
  4. *
  5. * Copyright (C) 1985-1990 Greenleaf Software Inc.  All Rights Reserved.
  6. *
  7. *  unsigned gettxfree( port )
  8. *  int port;            - Port 0..MAX_PORT-1
  9. *
  10. * DESCRIPTION
  11. *
  12. * Return the number of available character positions in the Transmit (ring)
  13. * buffer.
  14. *
  15. * Because it is not possible to differentiate between an error and a
  16. * valid return value it is necessary to return any errors in the global
  17. * variable _aserror.
  18. *
  19. *       _aserror =
  20. *
  21. *       Value           Meaning
  22. *     -------          --------
  23. *       ASSUCCESS       Successful (no error)
  24. *       ASINVPORT       Requested port is out of range
  25. *       ASNOTSETUP      Requested port not setup with asifirst()
  26. *
  27. * SIDE EFFECTS
  28. *       None
  29. *
  30. * MODIFICATIONS
  31. *       None
  32. */
  33. #include <stdio.h>
  34. #include "gf.h"
  35. #include "asiports.h"
  36.  
  37. unsigned GF_CONV gettxfree(port)
  38. int port;
  39. {
  40.         struct PORT_TABLE *p;
  41.  
  42.         if((p=_aschkcnl(port))==NULL)
  43.                 return(0);
  44.         return(p->tx_size-p->tx_count);
  45. }
  46.