SYNOPSIS
#include <ndbm.h>
datum dbm_firstkey(DBM *db);
DESCRIPTION
The
A datum consists of at least two members, dptr and dsize. The dptr member points to an object that is dsize bytes in length. Arbitrary binary data, as well as character strings, may be stored in the object pointed to by dptr.
This function can be combined with
for (key = dbm_firstkey(db);
key.dptr != NULL;
key = dbm_nextkey(db))
{
}
PARAMETERS
- db
-
Points to database where the key is fetched from. This must be a pointer returned by a prior call to
dbm_open() .
RETURN VALUES
The
CONFORMANCE
UNIX 98.
MULTITHREAD SAFETY LEVEL
Unsafe.
PORTING ISSUES
None
AVAILABILITY
MKS Toolkit for Professional Developers
MKS Toolkit for Enterprise Developers
MKS Toolkit for Enterprise Developers 64-Bit Edition
SEE ALSO
- Functions:
dbm_clearerr() ,dbm_close() ,dbm_delete() ,dbm_error() ,dbm_fetch() ,dbm_nextkey() ,dbm_open() ,dbm_store() ,dbopen()
MKS Toolkit 9.3 Documentation Build 6.