~ubuntu-branches/ubuntu/raring/reprepro/raring

« back to all changes in this revision

Viewing changes to ar.h

  • Committer: Bazaar Package Importer
  • Author(s): Bernhard R. Link
  • Date: 2011-05-05 16:34:23 UTC
  • mfrom: (21.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110505163423-x49kbdijyoubai4x
Tags: 4.6.0-1
* new release
- general cleanup
- new FilterSrcList
* increase Standards-Version, no changes needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
struct ar_archive;
5
5
 
6
 
retvalue ar_open(/*@out@*/struct ar_archive **, const char *filename);
 
6
retvalue ar_open(/*@out@*/struct ar_archive **, const char *);
7
7
void ar_close(/*@only@*/struct ar_archive *);
8
8
 
9
9
/* RET_OK = next is there, RET_NOTHING = eof, < 0 = error */
10
 
retvalue ar_nextmember(struct ar_archive *,/*@out@*/char **filename);
 
10
retvalue ar_nextmember(struct ar_archive *, /*@out@*/char ** /*filename*/);
11
11
 
12
12
/* set compression for the next member */
13
13
void ar_archivemember_setcompression(struct ar_archive *, enum compression);