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_readc(cp: HTTPConnection): char;

Arguments:

cp Connection handle

Description:

This function reads a single character from response document. This call can succeed only after successful call of http_request and if http_eof is false.

Returns:

Character on success, NULL-byte on error.

Usage:

while not http_eof(cp) do
	c := http_readc(cp);

See also:

http_eof, http_reads.

PSP Help documents