#ifndef _FILE_UTIL_H #define _FILE_UTIL_H #ifndef FALSE #define FALSE 0 #endif #ifndef TRUE #define TRUE 1 #endif int has_double_dot_component (const char *path); int mkdir_recursive (const void *ctx, const char *path, int mode); int sync_dir (const char *path); #endif