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 base64_decode(const s: string): string;

Arguments:

s Base64-encoded string for decoding

Description:

This function returns original value of base64-encoded string.

Returns:

Decoded value of base64-encoded string.

Usage:

s := 'Look at encoded value!';
s := base64_encode(s);
writeln(s);
s := base64_decode(s);
writeln(s);

See also:

base64_encode.

PSP Help documents