|
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 g
Length: 877 (0x36d) Types: TextFile Names: »globals.c«
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦cfd40dc56⟧ »EurOpenD3/news/nntp/nntp.1.5.8.tar.Z« └─⟦2ec98eca6⟧ └─⟦this⟧ »server/globals.c« └─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦5cced586a⟧ »EurOpenD3/news/nntp/nntp.1.5.7.tar.Z« └─⟦7340f105e⟧ └─⟦this⟧ »./server/globals.c«
#ifndef lint static char *sccsid = "@(#)globals.c 1.5 (Berkeley) 5/11/89"; #endif /* * Common variables. */ #include "common.h" /* * Variables initialized from ../common/conf.h */ char spooldir[] = SPOOLDIR; char activefile[] = ACTIVE_FILE; char accessfile[] = ACCESS_FILE; char distributionsfile[] = DISTRIBUTIONS_FILE; char newsgroupsfile[] = NEWSGROUPS_FILE; char historyfile[] = HISTORY_FILE; #ifdef ACTIVE_TIMES_FILE char ngdatefile[] = ACTIVE_TIMES_FILE; #else char ngdatefile[] = NGDATE_FILE; #endif char inews[] = INEWS; char rnews[] = RNEWS; /* * Other random externals. */ char **group_array; char *actbuf; int num_groups; int ingroup = 0; int art_ptr; int num_arts; int art_array[MAX_ARTICLES]; FILE *art_fp; int uid_poster, gid_poster; int canpost, canread, canxfer; char **ngpermlist; int ngpermcount; #ifdef LOG int arts_acsd; int grps_acsd; #endif