Files
isodrive/src/include/util.h
Marcel Alexandru Nitan f55ca622aa isodrive: first commit
2023-01-31 20:36:12 +02:00

13 lines
234 B
C

#ifndef UTIL_H
#define UTIL_H
char *fs_mount_point(char *filesystem_type);
char *strjin(char *w1, char *w2);
bool isdir(char *path);
void sysfs_write(char *path, char *content);
char *getprop(char *key);
void trim(char *s);
#endif