mirror of
https://github.com/PDP-10/its.git
synced 2026-01-27 12:42:10 +00:00
16 lines
535 B
C
16 lines
535 B
C
/* Handy definitions */
|
|
|
|
#define OPENLOSS (-1) /* Returned by COPEN if open fails */
|
|
|
|
typedef int SIXBIT; /* Six characters packed in one word */
|
|
|
|
typedef struct { /* ITS filespec in sixbit */
|
|
SIXBIT dev, /* Device */
|
|
fn1, /* First filename */
|
|
fn2, /* Second filename */
|
|
dir; /* Directory */
|
|
} FILESPEC;
|
|
|
|
#define TRUE 1
|
|
#define FALSE 0
|