This is popaka.c in view mode; [Download] [Up]
/* popaka.c - generate POP entries for MMDF-II alias file */
#ifndef lint
static char ident[] = "@(#)$Id: popaka.c,v 1.1.1.2 1991/04/28 03:53:08 karl Exp $";
#endif lint
#include <stdio.h>
#include "../zotnet/bboards.h"
static process();
/* */
/* 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);
}
/* */
static process (bb)
struct bboard *bb;
{
printf ("%s: %s@pop\n", bb -> bb_name, bb -> bb_name);
}
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.