Database
dunteman.lst
Associated article: Structured Programming
Tags: Database Tools Open Source
_STRUCTURED PROGRAMMING COLUMN_
by Jeff Duntemann
[LISTING ONE]
{-------------------------------------------------}
{ SETOBJ }
{ Set object with an interactive editing method }
{ by Jeff Duntemann }
{ For DDJ 8/90 }
{ Turbo Pascal 5.5 }
{ Last modified 5/4/90 }
{-------------------------------------------------}
UNIT SetObj;
INTERFACE
USES DOS,Crt;
TYPE
BitSet = SET OF 0..255; { Maximum size generic ...


