mirror of
https://github.com/pygos/pkg-utils.git
synced 2024-11-06 05:37:10 +01:00
29 lines
461 B
C
29 lines
461 B
C
|
#ifndef UNPACK_H
|
||
|
#define UNPACK_H
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/stat.h>
|
||
|
#include <getopt.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
#include <unistd.h>
|
||
|
#include <stdio.h>
|
||
|
#include <errno.h>
|
||
|
#include <fcntl.h>
|
||
|
|
||
|
#include "image_entry.h"
|
||
|
#include "pkgreader.h"
|
||
|
#include "command.h"
|
||
|
#include "util.h"
|
||
|
|
||
|
enum {
|
||
|
FLAG_NO_CHOWN = 0x01,
|
||
|
FLAG_NO_CHMOD = 0x02,
|
||
|
};
|
||
|
|
||
|
int create_hierarchy(image_entry_t *list);
|
||
|
|
||
|
int mkdir_p(const char *path);
|
||
|
|
||
|
#endif /* UNPACK_H */
|