summaryrefslogtreecommitdiff
path: root/gallery-utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'gallery-utils.h')
-rw-r--r--gallery-utils.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/gallery-utils.h b/gallery-utils.h
index 1547c90..95dbcff 100644
--- a/gallery-utils.h
+++ b/gallery-utils.h
@@ -23,10 +23,11 @@
/*
* str_replace: replace substring 'search' with a 'replace' string
- * - only one occurence of the string is replaced
- * - reallocates the original string
+ * - multiple occurences of the string are replaced
+ * - specify 'exclude_when' if you want to skip replace when a string found at the place of 'search'
+ * - reallocates the original string
*/
-void str_replace (char **dst, const char *search, const char *replace);
+void str_replace (char **dst, const char *search, const char *replace, const char *exclude_when);
/*
* copy_file: copy file from src to dst
@@ -39,3 +40,8 @@ gboolean copy_file (const char *src, const char *dst);
*/
char *make_string (const char* substr, const int count);
+/*
+ * fix_entities: replace all invalid & entities with &
+ * - returns newly allocated string
+ */
+void fix_entities (char **str); \ No newline at end of file