//DESCRIBE job card info //* //* Copyright (c) 1996, SAS Institute Inc. //* Unpublished - All Rights Reserved //* //* //* NAME: DESCRIBE //* //* PURPOSE: This program demonstrates the use of the SAS/C FSSL. //* Specifically, this routine allows a dataset name to //* be entered. Upon entry it will provide misc infor- //* mation on the dataset. At the user request it will //* also allow a detailed description about the dataset //* to be entered. The description is stored in a //* master "DSINFO" file. When the dataset name is //* entered this file is searched for an old description. //* //* FUNCTION: Compile and link source files listed below. //* //* SOURCE: see prefix.SAMPLE.C members - //* DESCRIBE //* //* MISC: SAS/C FSSL *must* be installed. //* The master "DSINFO" file *must* be allocated. //* (characteristics: RECFM=FBS) //* If running in OS, the dataset names must be entered //* in fully qualified format. //* //* NOTE: Verify the statements indicated by the "<== VERIFY" //* have been customized for the local environment. //**************************************************************** //* //******************** //* COMPILE AND LINK * //******************** //COMPLNK EXEC PROC=LC370CL //C.SYSIN DD DSN=prefix.SAMPLE.C(DESCRIBE),DISP=SHR <== VERIFY //C.SYSLIN DD DSN=your.object.library(DESCRIBE),DISP=SHR <== VERIFY //C.SYSLIB DD DSN=prefix.sasc.FSSL.MACLIBC,DISP=SHR <== VERIFY // DD DSN=prefix.sasc.MACLIBC,DISP=SHR <== VERIFY //LKED.SYSLMOD DD DSN=your.load.library(DESCRIBE),DISP=SHR <== VERIFY //* //