#ifndef _REPO_H_5b87b0c0_ #define _REPO_H_5b87b0c0_ /* This file is in the public domain. */ #include #include "structs.h" struct repo { REPO *link; char *name; char *filename; DATATYPE type; TIMEINTVL maxgap; FILE *f; struct stat filestat; } ; extern void repo_free(REPO *); extern void repo_free_chain(REPO *); extern void repo_record(REPO *, unsigned long long int, const char *, void (*)(const char *, ...)); #endif