#ifndef UTIL_H
#define UTIL_H

#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <string.h>
#include <time.h>
#include <glib.h>

gboolean mkpath( char *, mode_t );
time_t fat_to_unix( guint32 );
guint32 unix_to_fat( time_t );

#endif

