isdelcurr(S) 6 January 1993 isdelcurr(S) Name isdelcurr - delete the current record Syntax cc . . . -lisam isdelcurr (isfd) int isfd; Description The isdelcurr function deletes the current record in an ISAM file. It differs from isdelete, which deletes a record identified by a key value. You can use the following argument with this routine: _________________________________________________________________________ Argument Description _________________________________________________________________________ isfd File descriptor identifying a currently open ISAM file. All index entries associated with the current record are also deleted. You must open the file with the ISINOUT option. Otherwise the operation fails. On success, isdelcurr returns 0. Otherwise, it returns -1 and sets iserrno to indicate the error. Example isdelcurr(bookfd) ; See also isdelete(S), isdelrec(S) Standards conformance isdelcurr is not part of any currently supported standard; it is an extension of AT&T System V provided by the Santa Cruz Operation.