fix: add include guards to path
1 files changed, 5 insertions(+), 0 deletions(-) M file-browser/include/path.h
M file-browser/include/path.h => file-browser/include/path.h +5 -0
@@ 1,4 1,9 @@ +#ifndef __PATH_H__ +#define __PATH_H__ + #include <string.h> #include <stdbool.h> char *path_join(char *base, char *relative); + +#endif // __PATH_H__