1 #ifndef _GSB_FILE_UTIL_H
2 #define _GSB_FILE_UTIL_H (1)
3 
4 #include <glib.h>
5 
6 /* START_INCLUDE_H */
7 /* END_INCLUDE_H */
8 
9 /* START_DECLARATION */
10 void		gsb_file_util_change_permissions			(void);
11 void		gsb_file_util_display_warning_permissions	(void);
12 gboolean	gsb_file_util_get_contents					(const gchar *filename,
13 														 gchar **file_content,
14 														 gulong *length);
15 gboolean	gsb_file_util_modify_lock					(const gchar *filename,
16 														 gboolean create_lock);
17 gboolean	gsb_file_util_test_overwrite 				(const gchar *filename);
18 /* END_DECLARATION */
19 #endif
20