#ident "$URL: svn://elmer/devel/SVN/SDDAS/trunk/libdB/GoTo.c $ %D% SwRI" #include "dbf.h" /**************** ** >FILE: GoTo.c ****************/ /**************************************** ** Function: int GoTo(int dbf, int rec) ** ** int dbf handle to datbase structure ** int rec record number ** ** Description: ** This routine reads the record r from the database which is referenced ** by the database structure D. ** ** Return Values: ** ***************** *****************/ dbRet_t GoTo(SDDAS_INT dbf, SDDAS_INT rec) { /* | just read the data record */ return(GetDbfRecord(dbf, rec)); }