//BTREE job card info
//*
//*             Copyright (c) 1996, SAS Institute Inc.
//*               Unpublished - All Rights Reserved
//*
//*
//*  NAME:     BTREE
//*
//*  PURPOSE:  SAS/C Debugger Example Program.
//*            This program generates a binary tree. When run under
//*            the control of the debugger, it opens up a Termin
//*            window that you can use to enter several data lines.
//*            The program inserts the lines in a binary tree, then
//*            performs an in-order traversal, printing the data lines
//*            in sorted order.
//*
//*            See SAS/C Debugger User's Guide and Reference Third
//*            Edition, Chapter 10, pgs. 209-212.
//*
//*  FUNCTION: Compile and link source files listed below.
//*            make sure to use the =DEBUG compile option
//*
//*  SOURCE:   see prefix.SAMPLE.C members -
//*            BTREE
//*
//*  NOTE:     Verify the statements indicated by the "<== VERIFY"
//*            have been customized for the local environment.
//****************************************************************
//*
//**************************
//*  COMPILE and LINK      *
//**************************
//*
//COMPLNK EXEC PROC=LC370CL,PARM.C='DEBUG,SNAME(BTREE)'
//C.SYSIN      DD DSN=prefix.SAMPLE.C(BTREE),DISP=SHR      <== VERIFY
//C.SYSLIN     DD DSN=your.object.library(BTREE),DISP=SHR  <== VERIFY
//C.SYSDBLIB   DD DSN=your.debugger.dataset,DISP=SHR       <== VERIFY
//LKED.SYSLMOD DD DSN=your.load.library(BTREE),DISP=SHR    <== VERIFY
//*
//