Modules | |
Session info | |
Release | |
Functions | |
QUVIcode | quvi_init (quvi_t *quvi) |
Start a new libquvi session. |
Start a new libquvi session.
Initializes a new session handle and locates the website scripts used to parse the page URLs. The library searches the following paths in the following order:
Note that you can have libquvi dump (to stderr) the scanned directory paths by setting the QUVI_SHOW_SCANDIR environment variable.
quvi | Pointer to a new handle |
Example:
#include <quvi/quvi.h> ... quvi_t quvi; int rc; rc = quvi_init(&quvi); if (rc != QUVI_OK) { fprintf(stderr, "error: libquvi: %s\n", quvi_strerror(quvi,rc)); exit(1); }