medit/moo/mooutils/mooutils-file.h

25 lines
503 B
C
Raw Normal View History

2010-11-23 21:54:39 -08:00
#ifndef MOO_UTILS_FILE_H
#define MOO_UTILS_FILE_H
#include <gio/gio.h>
#include <mooutils/mooarray.h>
G_BEGIN_DECLS
2010-12-12 02:29:20 -08:00
MOO_DECLARE_OBJECT_ARRAY_FULL (MooFileArray, moo_file_array, GFile)
2010-11-23 21:54:39 -08:00
2013-04-20 22:14:56 -07:00
G_INLINE_FUNC void
2010-11-23 21:54:39 -08:00
moo_file_free (GFile *file)
{
if (file)
g_object_unref (file);
}
gboolean moo_file_fnmatch (GFile *file,
const char *glob);
char *moo_file_get_display_name (GFile *file);
G_END_DECLS
#endif /* MOO_UTILS_FILE_H */