
/* DDLP Version 1.02 */

struct address
    {
    char                szStreet[31];
    char                szCity[21];
    char                szState[3];
    char                szZip[11];
    char                szTelephone[13];
    char                szFax[13];
    };

struct client
    {
    long                lClientNbr;
    char                szName[31];
    char                szDescription[61];
    double              dBalance;
    };

struct setup
    {
    long                lNextClientNbr;
    };

