DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T r

⟦d3acf2976⟧ TextFile

    Length: 767 (0x2ff)
    Types: TextFile
    Names: »raw.c«

Derivation

└─⟦87ddcff64⟧ Bits:30001253 CPHDIST85 Tape, 1985 Autumn Conference Copenhagen
    └─ ⟦this⟧ »cph85dist/rman/daemon/raw.c« 

TextFile

#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);
}