forked from AuroraMiddleware/gtk
2332ac444c
We need it because of the declaration using FILE*.
20 lines
570 B
C
20 lines
570 B
C
#ifndef __GTKUTILS_H__
|
|
#define __GTKUTILS_H__
|
|
|
|
#include <stdio.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);
|
|
char * gtk_trim_string (const char *str);
|
|
char ** gtk_split_file_list (const char *str);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif
|