File: micro.h

package info (click to toggle)
nethack 3.2.3-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 9,960 kB
  • ctags: 14,316
  • sloc: ansic: 155,139; asm: 2,412; yacc: 2,002; makefile: 887; lex: 412; sh: 160
file content (21 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*	SCCS Id: @(#)micro.h	3.2	90/02/22	*/
/* micro.h - function declarations for various microcomputers */
/* NetHack may be freely redistributed.  See license for details. */

#ifndef MICRO_H
#define MICRO_H

extern const char *alllevels, *allbones;
extern char levels[], bones[], permbones[], hackdir[];

extern int ramdisk;

#ifndef C
#define C(c)	(0x1f & (c))
#endif
#ifndef M
#define M(c)	(0x80 | (c))
#endif
#define ABORT C('a')

#endif /* MICRO_H */