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

13 lines
226 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);
#endif /* UTIL_H */