|
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 h
Length: 833 (0x341) Types: TextFile Names: »help.c«
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦5cced586a⟧ »EurOpenD3/news/nntp/nntp.1.5.7.tar.Z« └─⟦7340f105e⟧ └─⟦this⟧ »./server/help.c«
#ifndef lint static char *sccsid = "@(#)help.c 1.7 (Berkeley) 6/26/87"; #endif #include "common.h" /* * HELP * * Provide a naive user with a brief help message. * */ help(argc, argv) int argc; char *argv[]; { printf("%d This server accepts the following commands:\r\n", INF_HELP); printf("ARTICLE BODY GROUP\r\n"); printf("HEAD LAST LIST\r\n"); printf("NEXT POST QUIT\r\n"); printf("STAT NEWGROUPS HELP\r\n"); printf("IHAVE NEWNEWS SLAVE\r\n"); printf("\r\nAdditionally, the following extention is supported:\r\n\r\n"); printf("XHDR Retrieve a single header line from a range of articles.\r\n"); printf("\r\n"); printf("Bugs to Phil Lapsley (Internet: phil@berkeley.edu; UUCP: ...!ucbvax!phil)\r\n"); printf(".\r\n"); (void) fflush(stdout); }