|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T m
Length: 518 (0x206) Types: TextFile Names: »mine.h«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0 └─⟦041b9c0f8⟧ »EurOpenD22/isode/pepsy.system-6.0.Z« └─⟦d49939f05⟧ └─⟦6a28ec38e⟧ »pepsy.tar« └─⟦this⟧ »pepy/mine.h«
/* Copyright 1989 CSIRO Division of Information Technology * May be given away but not sold for profit - See Copyright file for details */ #define TABLESIZE 29 typedef struct ID_TABLE { char *h_value; char *r_value; int def_bit; int def_value; int count; struct ID_TABLE *next; } id_entry; typedef struct S_TABLE { char *name; char *type; struct S_TABLE *parent; char *field; int defined; struct S_TABLE *next; } s_table; extern id_entry *id_table[]; extern s_table *head; extern char *c_flags();