blob: cf47f619059b0ecf4f8ac5e38369574384e0a5d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef REPREPRO_DEBFILE_H
#define REPREPRO_DEBFILE_H
#ifndef REPREPRO_ERROR_H
#include "error.h"
#warning "What's hapening here?"
#endif
/* Read the control information of a .deb file */
retvalue extractcontrol(/*@out@*/char **, const char *);
/* Read a list of files from a .deb file */
retvalue getfilelist(/*@out@*/char **, /*@out@*/ size_t *, const char *);
#endif
|