|
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 - downloadIndex: ┃ T r ┃
Length: 767 (0x2ff) Types: TextFile Names: »raw.c«
└─⟦87ddcff64⟧ Bits:30001253 CPHDIST85 Tape, 1985 Autumn Conference Copenhagen └─ ⟦this⟧ »cph85dist/rman/daemon/raw.c«
#ifndef lint static char RCSid[] = "$Header: raw.c,v 1.4 85/08/27 15:17:12 broome Exp $"; #endif /* * $Log: raw.c,v $ * Revision 1.4 85/08/27 15:17:12 broome * Last cleanup before release. * * Revision 1.3 85/07/06 16:56:07 broome * * Revision 1.2 85/07/04 20:35:55 broome * Got the rfc protocol right, added rcs keywords. */ #include "defs.h" #include "response.h" #include <stdio.h> /* * Find and send the raw (unformatted) man page. */ raw (argc, argv) int argc; char **argv; { struct where *wp; /* find the file */ wp = find (--argc, ++argv); if (wp->found) { printf ("%d Raw file %s on the way.\r\n", OK_COMING, wp->man); soelim (wp->man); puts (".\r"); } else notfound (wp); }