comparison src/ui_fileops.h @ 1638:ceafe3731568

Fix up compilation using make -jN: sometimes it fails due to order of headers inclusion.
author zas_
date Thu, 11 Jun 2009 17:34:37 +0000
parents 89dedc61b1bd
children f80ee95314dd
comparison
equal deleted inserted replaced
1637:80ba6b99478f 1638:ceafe3731568
95 95
96 gboolean file_in_path(const gchar *name); 96 gboolean file_in_path(const gchar *name);
97 97
98 gboolean recursive_mkdir_if_not_exists(const gchar *path, mode_t mode); 98 gboolean recursive_mkdir_if_not_exists(const gchar *path, mode_t mode);
99 99
100
101 /* generate md5 string from file,
102 * on failure returns newly allocated copy of error_text, error_text may be NULL
103 */
104 gchar *md5_text_from_file_utf8(const gchar *path, const gchar *error_text);
105 gboolean md5_get_digest_from_file_utf8(const gchar *path, guchar digest[16]);
106
100 #endif 107 #endif
101 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ 108 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */