DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T t

⟦f566d9cc5⟧ TextFile

    Length: 870 (0x366)
    Types: TextFile
    Names: »table.h«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/jove/table.h« 

TextFile

/************************************************************************
 * This program is Copyright (C) 1986 by Jonathan Payne.  JOVE is       *
 * provided to you without charge, and with no warranty.  You may give  *
 * away copies of JOVE, including sources, provided that this notice is *
 * included in all the files.                                           *
 ************************************************************************/

typedef struct word	Word;
typedef struct table	Table;

struct word {
	Word	*wd_next;
	char	*wd_text;
};

struct table {
	Table	*t_next;
	Word	*t_wordlist;
};

extern Table	*make_table();
extern Word	*word_in_table();

#define	table_top(table)	(table->t_wordlist)
#define next_word(w)		(w->wd_next)
#define last_word_p(w)		(w->wd_next == NIL)
#define word_text(w)		(w->wd_text)
#define word_length(w)		(strlen(word_text(w)))