1
0
Fork 0
mirror of https://github.com/pygos/pkg-utils.git synced 2024-05-10 16:36:13 +02:00
pkg-utils/include/util.h
David Oberhollenzer 6ec11b532e Initial commit
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
2019-01-26 23:19:21 +01:00

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