blob: 6d63bb017a03426530b0063c57c2707a698f728e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
=head1 NAME
dbfp_close - cleans up the metadata for queries to the DB timetable API
=head1 SYNOPSIS
#include <dbfp.h>
void dbfp_close(struct dbfp *dbfp);
=head1 DESCRIPTION
B<dbfp_close> cleans up a I<dbfp> structure and releases its allocated
resources. The structure itself is not freed. I<dbfp> may be NULL.
B<dbfp> is a structure defined as:
struct dbfp {
char *key;
CURL *curl;
};
The user does not have to deal with the fields of this structure.
=head1 SEE ALSO
L<dbfp_init(3)>
|