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 gzip_compress(const source: string): string;

Arguments:

source Source string for compression

Description:

Compresses a string using ZLib deflate method.

Returns:

Deflated string.

Usage:

s := gzip_compress('Some very long string which shows you real compression');
writeln(s);
s := gzip_decompress(s, 0);
writeln(s);

See also:

gzip_decompress.

PSP Help documents