home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume13 / casette-lbl / cassette.h < prev    next >
Text File  |  1988-01-31  |  669b  |  28 lines

  1. /*
  2.  * Copyright (C) 1987, Thomas H. Smith -- San Francisco, California
  3.  *   Program 'Cassette':
  4.  *    Permission is granted to any individual or institution
  5.  *    to use, copy, modify, or redistribute this software so long as it
  6.  *    is not sold for profit and provided this copyright notice is retained.
  7.  *
  8.  *   PostScript is a registered trademark of Adobe Systems, Inc.
  9.  */
  10.  
  11. #define TRUE    (1)
  12. #define FALSE    (0)
  13.  
  14. /* cassette sides */
  15. #define ONLY    0
  16. #define SIDE1    1
  17. #define SIDE2    2
  18.  
  19. /* recognized noise reduction types */
  20. #define NONE    0
  21. #define DOLBY_B    1
  22. #define DOLBY_C    2
  23. #define DBX    3
  24. #define OTHER    4
  25.  
  26. #define OUTPUT            (void) printf
  27. #define EMPTYSTRING(str)    (str[0] == '\0')
  28.