1
0
Fork 0
mirror of https://github.com/pygos/pkg-utils.git synced 2024-06-01 02:08:44 +02:00
pkg-utils/main/cmd/unpack/unpack.h
David Oberhollenzer 6ec11b532e Initial commit
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
2019-01-26 23:19:21 +01:00

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 */