This is a search engine friendly CGI program that outputs help documents.
The LufDoc (Live User Fed Documentation) comment system will be implemented soon.

PSP Help Doc Indexer System

(Version 1.4.1)


Declaration:

function http_reads(cp: HTTPConnection): string;

Arguments:

cp Connection handle

Description:

This function reads a single line (a string till line break) from response document. This call can succeed only after successful call of http_request and if http_eof is false.

Returns:

String data on success, empty string on error.

Usage:

while not http_eof(cp) do
	s := http_reads(cp);

See also:

http_eof, http_readc.

PSP Help documents