From 23cd3e6041fa686fbd3ac0bbee2e440eeceac822 Mon Sep 17 00:00:00 2001 From: Pavel Grunt Date: Thu, 17 Mar 2016 11:19:34 +0100 Subject: Move strtok_r from glib-compat to spice-uri It is not glib specific and it is only used in spice-uri Acked-by: Victor Toso --- src/glib-compat.c | 31 ------------------------------- src/glib-compat.h | 4 ---- src/spice-uri.c | 29 +++++++++++++++++++++++++++++ 3 files changed, 29 insertions(+), 35 deletions(-) diff --git a/src/glib-compat.c b/src/glib-compat.c index 41a7f52..622620b 100644 --- a/src/glib-compat.c +++ b/src/glib-compat.c @@ -110,34 +110,3 @@ g_queue_free_full (GQueue *queue, g_queue_free (queue); } #endif - - -#ifndef HAVE_STRTOK_R -G_GNUC_INTERNAL -char *strtok_r(char *s, const char *delim, char **save_ptr) -{ - char *token; - - if (s == NULL) - s = *save_ptr; - - /* Scan leading delimiters. */ - s += strspn (s, delim); - if (*s == '\0') - return NULL; - - /* Find the end of the token. */ - token = s; - s = strpbrk (token, delim); - if (s == NULL) - /* This token finishes the string. */ - *save_ptr = strchr (token, '\0'); - else - { - /* Terminate the token and make *SAVE_PTR point past it. */ - *s = '\0'; - *save_ptr = s + 1; - } - return token; -} -#endif diff --git a/src/glib-compat.h b/src/glib-compat.h index 512ea55..51eef5c 100644 --- a/src/glib-compat.h +++ b/src/glib-compat.h @@ -62,8 +62,4 @@ g_queue_free_full (GQueue *queue, } G_STMT_END #endif -#ifndef HAVE_STRTOK_R -char* strtok_r(char *s, const char *delim, char **save_ptr); -#endif - #endif /* GLIB_COMPAT_H */ diff --git a/src/spice-uri.c b/src/spice-uri.c index e2c5c9a..d925973 100644 --- a/src/spice-uri.c +++ b/src/spice-uri.c @@ -60,6 +60,35 @@ enum { SPICE_URI_PORT }; +#ifndef HAVE_STRTOK_R +static char *strtok_r(char *s, const char *delim, char **save_ptr) +{ + char *token; + + if (s == NULL) + s = *save_ptr; + + /* Scan leading delimiters. */ + s += strspn (s, delim); + if (*s == '\0') + return NULL; + + /* Find the end of the token. */ + token = s; + s = strpbrk (token, delim); + if (s == NULL) + /* This token finishes the string. */ + *save_ptr = strchr (token, '\0'); + else + { + /* Terminate the token and make *SAVE_PTR point past it. */ + *s = '\0'; + *save_ptr = s + 1; + } + return token; +} +#endif + G_GNUC_INTERNAL SpiceURI* spice_uri_new(void) { -- cgit