1) dbm.h redefines null to be a pointer instead of just 0, but nothing says
that you can't redefine it yourself within your function that wants to use
standard I/O library calls. Or redefine your own NULL and use it as your NULL
reference. Without specific examples, it's hard to give you a specific
workaround.
2) Anything you find in a header file that is not documented or obvious as to
its function is usually an internal declaration used for the program itself.
This is the case with the extra function declarations in the dbm.h file.
3) The fetch function returns the data itself, not a pointer to it.