mirror of
https://github.com/pygos/pkg-utils.git
synced 2024-11-16 18:37:12 +01:00
14 lines
258 B
C
14 lines
258 B
C
#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 */
|