42 lines
1.3 KiB
C
Executable File
42 lines
1.3 KiB
C
Executable File
#ifndef h_dynamic
|
|
#define h_dynamic
|
|
/******************************************************************************
|
|
*
|
|
* Declarations for dynamic array functions
|
|
*
|
|
* Module %M% Version %I% Date %H%
|
|
*
|
|
* (c) Copyright 1998 Ardent Software Inc. - All Rights Reserved
|
|
* This is unpublished proprietary source code of Ardent Software Inc.
|
|
* The copyright notice above does not evidence any actual or intented
|
|
* publication of such source code.
|
|
*
|
|
*******************************************************************************
|
|
*
|
|
* Maintenence log - insert most recent change descriptions at top
|
|
*
|
|
* Date.... GTAR# WHO Description.........................................
|
|
* 10/14/98 23801 SAP Change copyrights.
|
|
* 10/29/91 8657 JSM Added global Nulxtract flag
|
|
* 03/13/89 5329 JSM Added dyn_Iinsert() and dyn_Ireplace()
|
|
* 07/25/88 - - Maintenence log purged at 5.2.1, see release 5.1.10.
|
|
*
|
|
*****************************************************************************/
|
|
|
|
EXTERN STRING dyn_delete(),
|
|
dyn_extract(),
|
|
dyn_insert(),
|
|
dyn_Iinsert(),
|
|
dyn_Ireplace(),
|
|
dyn_replace(),
|
|
dyn_xtract(),
|
|
dyn_xinsert(),
|
|
dyn_xreplace();
|
|
|
|
EXTERN int scdx[3],scdlvl;
|
|
EXTERN int scd();
|
|
EXTERN uchar scdmrk;
|
|
EXTERN int Nulxtract;
|
|
|
|
#endif /* end of dynamic.h */
|