From ff3e7503ad5462ec63b951a7932f6add31154df2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net>
Date: Tue, 15 Oct 1996 05:52:51 +0200
Subject: [PATCH] New documenation

Rev: doc/precompiled/FILE:1.1
---
 doc/precompiled/FILE | 68 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 68 insertions(+)
 create mode 100644 doc/precompiled/FILE

diff --git a/doc/precompiled/FILE b/doc/precompiled/FILE
new file mode 100644
index 0000000000..133a3fb74d
--- /dev/null
+++ b/doc/precompiled/FILE
@@ -0,0 +1,68 @@
+NAME
+	/precompiled/FILE - buffered IO
+
+DESCRIPTION
+	/precompiled/FILE implements buffered IO and some nice functions
+	not available in /precompiled/file such as gets(). Almost all the
+	functions of /precompiled/file are present. The extra functions
+	are listed below:
+
+SEE ALSO
+	/precompiled/file
+
+============================================================================
+NAME
+	gets - get one line
+
+SYNTAX
+	#include <stdio.h>
+
+	string FILE->gets();
+
+DESCRIPTION
+	This function returns one line from the FILE, it returns zero if
+	no more lines are available.
+
+============================================================================
+NAME
+	printf - formatted print
+
+SYNTAX
+	#include <stdio.h>
+
+	string FILE->printf(string format, mixed ... data);
+
+DESCRIPTION
+	This function does aproximately the same as:
+	FILE->write(sprintf(format,@data))
+
+SEE ALSO
+	sprintf
+============================================================================
+NAME
+	ungets - put a character back in the buffer
+
+SYNTAX
+	#include <stdio.h>
+
+	string FILE->ungets(string s);
+
+DESCRIPTION
+	This function puts a string back in the input buffer. The string
+	can then be read with read or gets.
+
+============================================================================
+NAME
+	getchar - get one character from the input stream
+
+SYNTAX
+	#include <stdio.h>
+
+	int FILE->getchar();
+
+DESCRIPTION
+	This function returns one character from the input stream. Note
+	that the return value is the ascii value of the character, not
+	a string containing one character.
+	
+============================================================================
-- 
GitLab