Database
alley.asc
Associated article: Algorithm Alley
Tags: Database
_ALGORITHM ALLEY_
by Tom Swan
[LISTING ONE]
{ instab.pas -- Algorithm #6: Insert Tabs by Tom Swan }
program InsTab;
const
outFName = 'TXT.OUT';
tabWidth = 8; { Try 4 for source code files }
blank = #32; { ASCII blank character }
tab = #09; { ASCII tab character }
var
InFName: String;
InFile, ...


