Archived
1
0
Fork 0

Initial commit

This commit is contained in:
Henrik Hautakoski 2011-06-08 18:46:58 +02:00
commit b2df740514
19 changed files with 1640 additions and 0 deletions

17
dlhist.h Normal file
View file

@ -0,0 +1,17 @@
#ifndef DLHIST_H
#define DLHIST_H
int dlhist_open();
int dlhist_lookup(const char *url);
void dlhist_update(const char *url);
void dlhist_purge(unsigned int timestamp);
void dlhist_flush();
void dlhist_close();
#endif /* DLHIST */