X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fstdio.h;h=d85af175a91ca6bfb4809427ff684c12ccaffc31;hb=56bacb39160e13397fde32a36329461f3ae56ec1;hp=a2428a50faab6847a2085e6e7ee0417177e5332b;hpb=9a862b964b7c7226f4d2fc52de13e0db0a9c66d4;p=pdclib diff --git a/includes/stdio.h b/includes/stdio.h index a2428a5..d85af17 100644 --- a/includes/stdio.h +++ b/includes/stdio.h @@ -1,6 +1,4 @@ -/* $Id$ */ - -/* 7.19 Input/output +/* Input/output This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. @@ -9,10 +7,7 @@ #ifndef _PDCLIB_STDIO_H #define _PDCLIB_STDIO_H _PDCLIB_STDIO_H -#ifndef _PDCLIB_INT_H -#define _PDCLIB_INT_H _PDCLIB_INT_H #include <_PDCLIB_int.h> -#endif #ifndef _PDCLIB_SIZE_T_DEFINED #define _PDCLIB_SIZE_T_DEFINED _PDCLIB_SIZE_T_DEFINED @@ -662,14 +657,6 @@ int getc( FILE * stream ); /* Equivalent to fgetc( stdin ). */ int getchar( void ); -/* Read characters from given stream into the array s, stopping at \n or EOF. - The string read is terminated with \0. Returns s if successful. If EOF is - encountered before any characters are read, the contents of s are unchanged, - and NULL is returned. If a read error occurs, the contents of s are indeter- - minate, and NULL is returned. -*/ -char * gets( char * s ); - /* Equivalent to fputc( c, stream ), but may be overloaded by a macro that evaluates its parameter more than once. */