mirror of
https://github.com/PDP-10/its.git
synced 2026-03-03 02:08:00 +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
|