1
0
Fork 0
mirror of https://github.com/pygos/pkg-utils.git synced 2024-05-08 07:26:15 +02:00
pkg-utils/include/util/util.h

15 lines
258 B
C
Raw Normal View History

#ifndef UTIL_H
#define UTIL_H
#include <sys/types.h>
int canonicalize_name(char *filename);
ssize_t write_retry(int fd, void *data, size_t size);
ssize_t read_retry(int fd, void *buffer, size_t size);
int mkdir_p(const char *path);
#endif /* UTIL_H */