|  |  
 |   |   
 NAMEafclose - close a database SYNOPSIS#include af.h int afclose(const Afclose *r, Afclose_r *rr); DESCRIPTIONThe afclose function closes a database, writing out any buffered data. The argument r specifies a set of options defined by the following structure: typedef struct {
	Uint2 dbid;
} Afclose;The dbid option specifies the descriptor of the database to be closed. RETURN VALUEThis function returns 0 if it exited normally. If an error occurred, it returns -1 and aferrno is set. The structure pointed to by rr is not used. ERRORSThis function returns only "core" errors. 
 |