home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / update30.lzh / UPDATE30 / ATARI.H < prev    next >
C/C++ Source or Header  |  1993-07-30  |  1KB  |  58 lines

  1. /*
  2.  * Copyright 1988, 1989, by Geoff Kuenning, Manhattan Beach, CA
  3.  * Permission for non-profit use is hereby granted.
  4.  * All other rights reserved.
  5.  * See "version.h" for a more complete copyright notice.
  6.  */
  7.  
  8. /*
  9.  * $Id: atari.h,v 1.1 1993/04/30 21:25:33 bammi Exp $
  10.  *
  11.  * $Log: atari.h,v $
  12.  * Revision 1.1  1993/04/30  21:25:33  bammi
  13.  * V2
  14.  *
  15.  * Revision 1.5  91/08/10  14:09:39  geoff
  16.  * Fix a truly tiny typo.
  17.  * 
  18.  * Revision 1.4  91/07/05  18:20:07  geoff
  19.  * Fix the comment character in the Log
  20.  * 
  21.  * Revision 1.3  91/05/27  21:48:01  geoff
  22.  * Add NO8BIT as a preferred default.
  23.  * 
  24.  * Revision 1.2  89/04/28  01:11:42  geoff
  25.  * Change Header to Id;  nobody cares about my pathnames.
  26.  * 
  27.  * Revision 1.1  89/02/27  23:12:31  geoff
  28.  * Initial revision
  29.  * 
  30.  */
  31.  
  32. /*
  33.  * This file is a sample local.h file.  It shows what I believe nearly every
  34.  * site will want to include in their local.h.  You will probably want to
  35.  * expand this file;  see "config.X" to learn of #defines that you might
  36.  * like to add to.
  37.  */
  38.  
  39. #define CAPITALIZATION
  40. #define MINIMENU
  41. #define NO8BIT
  42. #define HASHEXT ".hsh"
  43.  
  44. /* caution this file will be included when building the host .oo's
  45.    too, and then it must reflect the hosts environment. all atarist
  46.    specific stuff should go below
  47.  */
  48.  
  49. #ifdef atarist
  50. #define REGEX_LOOKUP
  51. #include <regexp.h>
  52. #define REGCMP(str)        regcomp ((str))
  53. #define REGEX(re, str, dummy)    regexec ((re), (str), 0)
  54. #define DEBUG(X) /* X */
  55. #else
  56. #define DEBUG(X) /* X */
  57. #endif
  58.