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

Arguments:

s Source string for encoding

Description:

This function encodes a string using base64 transfer encoding method.

Returns:

base64-encoded string.

Usage:

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

See also:

base64_decode.

PSP Help documents