mirror of
https://github.com/nitanmarcel/isodrive.git
synced 2026-03-13 04:17:24 +00:00
13 lines
234 B
C
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
|
|
|