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