ftp.nice.ch/pub/next/unix/mail/mh.6.7.s.tar.gz#/mh/sbr/peekc.c

This is peekc.c in view mode; [Download] [Up]

/* peekc.c - peek at the next character in a stream */

#include "../h/mh.h"
#include <stdio.h>


int	peekc(ib)
register FILE *ib;
{
    register int    c;

    c = getc (ib);
    (void) ungetc (c, ib);

    return c;
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.