X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fpeekc.c;fp=sbr%2Fpeekc.c;h=0000000000000000000000000000000000000000;hp=7d5f7f9c54ee9c0d97bfa55ae6aad956fa53b101;hb=8e98a317c86f10e0c7e866c069e143bf48cf9814;hpb=e6a372ac5444651ff2f156580b01e6a6ee8e30de diff --git a/sbr/peekc.c b/sbr/peekc.c deleted file mode 100644 index 7d5f7f9..0000000 --- a/sbr/peekc.c +++ /dev/null @@ -1,20 +0,0 @@ -/* -** peekc.c -- peek at the next character in a stream -** -** This code is Copyright (c) 2002, by the authors of nmh. See the -** COPYRIGHT file in the root directory of the nmh distribution for -** complete copyright information. -*/ - -#include - - -int -peekc(FILE *fp) -{ - register int c; - - c = getc(fp); - ungetc(c, fp); - return c; -}