Use gchar, gint, gsize instead of char, int, size_t in the interface for

2003-07-29  Matthias Clasen  <maclas@gmx.de>

	* glib/gqsort.[hc] (g_qsort_with_data):
	* glib/gconvert.[hc] (g_filename_to_uri, g_filename_from_uri):
	* glib/gfileutils.[hc] (g_mkstemp, g_file_open_tmp): Use gchar, gint, gsize instead of char, int, size_t
	in the interface for consistency.  (#118567)
This commit is contained in:
Matthias Clasen
2003-07-29 18:59:23 +00:00
committed by Matthias Clasen
parent 352c03fd39
commit cf9779628e
12 changed files with 53 additions and 23 deletions

View File

@@ -82,11 +82,11 @@ gchar * g_read_link (const gchar *filename,
GError **error);
/* Wrapper / workalike for mkstemp() */
int g_mkstemp (char *tmpl);
gint g_mkstemp (gchar *tmpl);
/* Wrapper for g_mkstemp */
int g_file_open_tmp (const char *tmpl,
char **name_used,
gint g_file_open_tmp (const gchar *tmpl,
gchar **name_used,
GError **error);
gchar *g_build_path (const gchar *separator,