#ifndef _REPO_H_5f298aca_ #define _REPO_H_5f298aca_ /* 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 *); #endif