Files
android_bootable_recovery/libblkid/fileutils.h
bigbiff bigbiff e60683a0d5 use libblkid to get filesystem type
we can now use libblkid to detect exfat
2013-02-25 09:06:46 -05:00

24 lines
402 B
C

#ifndef UTIL_LINUX_FILEUTILS
#define UTIL_LINUX_FILEUTILS
extern int xmkstemp(char **tmpname, char *dir);
static inline FILE *xfmkstemp(char **tmpname, char *dir)
{
int fd;
FILE *ret;
fd = xmkstemp(tmpname, dir);
if (fd == -1) {
return NULL;
}
if (!(ret = fdopen(fd, "w+"))) {
close(fd);
return NULL;
}
return ret;
}
extern int get_fd_tabsize(void);
#endif /* UTIL_LINUX_FILEUTILS */