Oberon || Library || Module Index || Search Engine || Definition || Module


Ulm's Oberon Library:
Suffixes


NAME

Suffixes - Oberon related filename suffixes

SYNOPSIS

CONST definitionSX   = ".od";
CONST moduleSX       = ".om";
CONST symfileSX      = ".sy";
CONST reffileSX      = ".r";
CONST objectSX       = ".o";
CONST archiveSX      = ".a";
CONST deflistingSX   = ".ld";
CONST modlistingSX   = ".l";
CONST symarchive     = "SYM";
CONST refarchive     = "REF";
CONST suffixlen      = 3;
CONST srcpattern     = "*.o[dm]";


VAR definitionS: ConstStrings.String; VAR moduleS: ConstStrings.String; VAR symfileS: ConstStrings.String; VAR reffileS: ConstStrings.String; VAR objectS: ConstStrings.String; VAR archiveS: ConstStrings.String; VAR deflistingS: ConstStrings.String; VAR modlistingS: ConstStrings.String; VAR symarchiveS: ConstStrings.String; VAR refarchiveS: ConstStrings.String;

DESCRIPTION

Suffixes exports the filename suffixes of Oberon related files. All suffix strings are exported as string constants and variables of type ConstStrings.String. suffixlen specifies the maximal suffix inclusive the delimiting dot. srcpattern may be given to ScanDir to examine all Oberon sources of the current directory.

SEE ALSO

oc, ConstStrings, ScanDir
Edited by: borchert, last change: 91/06/19, revision: 1.1, converted to HTML: 1997/04/28

Oberon || Library || Module Index || Search Engine || Definition || Module