home *** CD-ROM | disk | FTP | other *** search
-
- /* d4recall.c
- (C) Copyright Sequiter Software Inc., 1987-1990. All rights reserved.
-
- Un-deletes a record.
- */
-
- #include "d4base.h"
-
- extern BASE *v4base ;
- extern int v4cur_base ;
-
-
- int d4recall( long rec_num )
- {
- int rc ;
-
- if ( (rc = d4go(rec_num)) != 0)
- return( rc ) ;
-
- v4base[v4cur_base].buffer[0] = ' ' ;
-
- if ( (rc = d4write( rec_num)) < 0)
- return rc ;
-
- return( 0 ) ;
- }
-
-
-