aboutsummaryrefslogtreecommitdiff
path: root/man/dbfp_close.pod
diff options
context:
space:
mode:
Diffstat (limited to 'man/dbfp_close.pod')
-rw-r--r--man/dbfp_close.pod27
1 files changed, 27 insertions, 0 deletions
diff --git a/man/dbfp_close.pod b/man/dbfp_close.pod
new file mode 100644
index 0000000..6d63bb0
--- /dev/null
+++ b/man/dbfp_close.pod
@@ -0,0 +1,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)>