Subversion Repositories SvarDOS

Rev

Rev 219 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 219 Rev 268
Line 27... Line 27...
27
  unsigned char flags;  /* zero for files, non-zero for directories */
27
  unsigned char flags;  /* zero for files, non-zero for directories */
28
  char filename[1];     /* must be last element (gets expanded at runtime) */
28
  char filename[1];     /* must be last element (gets expanded at runtime) */
29
};
29
};
30
 
30
 
31
struct ziplist *zip_listfiles(FILE *fd);
31
struct ziplist *zip_listfiles(FILE *fd);
32
int zip_unzip(FILE *zipfd, struct ziplist *curzipnode, char *fulldestfilename);
32
int zip_unzip(FILE *zipfd, struct ziplist *curzipnode, const char *fulldestfilename);
33
void zip_freelist(struct ziplist **ziplist);
33
void zip_freelist(struct ziplist **ziplist);
34
 
34
 
35
#endif
35
#endif