diff options
author | Matthias Clasen <mclasen@redhat.com> | 2016-03-26 18:12:16 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2016-03-26 18:12:16 -0400 |
commit | 6994fe03ee3f533583b6717ad979937143157c9f (patch) | |
tree | 1bd87834432cfe26879ef066438ec9f26e12df1e /gtk/gtkutilsprivate.h | |
parent | e2d89b9931f45df01308be236d7deecf515faf49 (diff) | |
download | gtk+-6994fe03ee3f533583b6717ad979937143157c9f.tar.gz |
Split off copied pango utils in their own source
This will make it easier to use them in more than one place.
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 |