summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2008-06-15 02:32:33 +0100
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2008-06-15 02:32:33 +0100
commitbc589d30c18a0517804c1306869e77f67d0da3ec (patch)
tree01a2ab9e571b49d2e6f3ce90f919ee161fc514bd
parentf9026a3ff0e13bad4bb339ff55746d6c69384b1b (diff)
downloadxine-lib-bc589d30c18a0517804c1306869e77f67d0da3ec.tar.gz
xine-lib-bc589d30c18a0517804c1306869e77f67d0da3ec.tar.bz2
Move the declaration of xine_strcat_realloc.
-rw-r--r--src/xine-utils/xineutils.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/xine-utils/xineutils.h b/src/xine-utils/xineutils.h
index 2d6425b00..5476ef2ce 100644
--- a/src/xine-utils/xineutils.h
+++ b/src/xine-utils/xineutils.h
@@ -676,6 +676,13 @@ void xine_strdupa(char *dest, char *src) XINE_PROTECTED XINE_DEPRECATED;
#define xine_strsep(STRINGP, DELIM) strsep((STRINGP), (DELIM))
#define xine_setenv(NAME, VAL, XX) setenv((NAME), (VAL), (XX))
+/**
+ * append to a string, reallocating
+ * normally, updates & returns *dest
+ * on error, *dest is unchanged & NULL is returned.
+ */
+char *xine_strcat_realloc (char **dest, char *append) XINE_PROTECTED;
+
/*
* Color Conversion Utility Functions
* The following data structures and functions facilitate the conversion
@@ -969,13 +976,6 @@ const char *xine_guess_spu_encoding(void) XINE_PROTECTED;
*/
int xine_monotonic_clock(struct timeval *tv, struct timezone *tz) XINE_PROTECTED;
-/**
- * append to a string, reallocating
- * normally, updates & returns *dest
- * on error, *dest is unchanged & NULL is returned.
- */
-char *xine_strcat_realloc (char **dest, char *append) XINE_PROTECTED;
-
/* don't harm following code */
#ifdef extern
# undef extern