|
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 p
Length: 712 (0x2c8) Types: TextFile Names: »popaka.c«
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦3658e588a⟧ »EurOpenD3/mail/mh/mh-6.7.tar.Z« └─⟦c75e36ecb⟧ └─⟦this⟧ »mh-6.7/support/pop/popaka.c«
/* popaka.c - generate POP entries for MMDF-II alias file */ #ifndef lint static char ident[] = "@(#)$Id: popaka.c,v 1.4 90/04/05 15:34:58 sources Exp $"; #endif lint #include <stdio.h> #include "../zotnet/bboards.h" static process(); /* \f */ /* ARGSUSED */ main (argc, argv) int argc; char **argv; { struct bboard *bb; if (!setbbinfo (POPUID, POPDB, 1)) { fprintf (stderr, "setbbinfo(%s, %s, 1) failed -- %s\n", POPUID, POPDB, getbberr ()); exit (1); } (void) setbbent (SB_STAY); while (bb = getbbent ()) process (bb); (void) endbbent (); exit (0); } /* \f */ static process (bb) struct bboard *bb; { printf ("%s: %s@pop\n", bb -> bb_name, bb -> bb_name); }