Design
porter.lst
Associated article: Structured Programming
Tags: Tools Design
_Structured Programming Column_
by Kent Porter
PROGRAM sub;
{ Enhanced version of DIR command }
{ Turbo Pascal 4.0 }
{ K. Porter, DDJ, August 88 }
USES dos, crt;
TYPE maskType = STRING [12];
pathType = STRING [80];
VAR oldDir, searchPath : pathType;
fileMask : maskType;
BlockSize, Nfiles : INTEGER;
TotalBytes, TotalK : LONGINT;
Thru : ...


