Code

Filter effects dialog:
[inkscape.git] / src / io / sys.h
1 #ifndef SEEN_SYS_H
2 #define SEEN_SYS_H
4 /*
5  * System abstraction utility routines
6  *
7  * Authors:
8  *   Jon A. Cruz <jon@joncruz.org>
9  *
10  * Copyright (C) 2004-2005 Authors
11  *
12  * Released under GNU GPL, read the file 'COPYING' for more information
13  */
15 #include <stdio.h>
16 #include <sys/stat.h>
17 #include <sys/types.h>
18 #include <glib/gtypes.h>
19 #include <glib/gdir.h>
20 #include <glib/gfileutils.h>
22 /*#####################
23 ## U T I L I T Y
24 #####################*/
26 namespace Inkscape {
27 namespace IO {
29 void dump_fopen_call( char const *utf8name, char const *id );
31 FILE *fopen_utf8name( char const *utf8name, char const *mode );
33 int mkdir_utf8name( char const *utf8name );
35 bool file_test( char const *utf8name, GFileTest test );
37 GDir *dir_open(gchar const *utf8name, guint flags, GError **error);
39 gchar *dir_read_utf8name(GDir *dir);
41 gchar* locale_to_utf8_fallback( const gchar *opsysstring,
42                                 gssize len,
43                                 gsize *bytes_read,
44                                 gsize *bytes_written,
45                                 GError **error );
47 gchar* sanitizeString( gchar const * str );
49 }
50 }
53 #endif // SEEN_SYS_H