diff options
Diffstat (limited to 'gtk/gtkutilsprivate.h')
-rw-r--r-- | gtk/gtkutilsprivate.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gtk/gtkutilsprivate.h b/gtk/gtkutilsprivate.h new file mode 100644 index 0000000000..e5d34bbce0 --- /dev/null +++ b/gtk/gtkutilsprivate.h @@ -0,0 +1,16 @@ +#ifndef __GTKUTILS_H__ +#define __GTKUTILS_H__ + +#include <glib.h> + +G_BEGIN_DECLS + +gboolean gtk_scan_string (const char **pos, + GString *out); +gboolean gtk_skip_space (const char **pos); +gint gtk_read_line (FILE *stream, + GString *str); + +G_END_DECLS + +#endif |