Add packaging files (deb)
[tools/deltarpm.git] / rpml.h
1 /*
2  * Copyright (c) 2004 Michael Schroeder (mls@suse.de)
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 #include <stdio.h>
9
10 struct rpmlfile {
11   char *name;
12   unsigned int mode;
13   unsigned int fflags;
14   unsigned char md5[16];
15 };
16
17 extern char *rpmlread(FILE *fp, char *fn, int nomagic, struct rpmlfile **filesp, int *nfilesp);
18