~reprepro-alioth/reprepro/3.0

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef REPREPRO_INDEXFILE_H
#define REPREPRO_INDEXFILE_H

#ifndef REPREPRO_ERROR_H
#include "error.h"
#warning "What's hapening here?"
#endif
#ifndef REPREPRO_TARGET_H
#include "target.h"
#endif

struct indexfile;

retvalue indexfile_open(/*@out@*/struct indexfile **, const char *, enum compression);
retvalue indexfile_close(/*@only@*/struct indexfile *);
bool indexfile_getnext(struct indexfile *, /*@out@*/char **, /*@out@*/char **, /*@out@*/const char **, /*@out@*/ architecture_t *, const struct target *, bool allowwrongarchitecture);

#endif