aboutsummaryrefslogtreecommitdiffstats
path: root/utils.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-09-23 02:57:14 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-09-23 02:57:14 +0000
commitb6f867a38ae064b5b50cc03dbe800e1adfb80d9c (patch)
tree87afb376f33b66926ff2cf66321280b37768c8a4 /utils.c
parent5f24c0842291b71f9054242a654a6f4acf3172ab (diff)
move process_quotes_and_slashes to utils.c since it is used by both pbx_ael and pbx_config
clean up some formatting remove some commented out reference code move unload_module in pbx_ael down to be with the rest of the standard module functions git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6630 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils.c')
-rwxr-xr-xutils.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/utils.c b/utils.c
index d33242f74..bb3a3e561 100755
--- a/utils.c
+++ b/utils.c
@@ -799,3 +799,29 @@ uint64_t strtoq(const char *nptr, char **endptr, int base)
return acc;
}
#endif
+
+char *ast_process_quotes_and_slashes(char *start, char find, char replace_with)
+{
+ char *dataPut = start;
+ int inEscape = 0;
+ int inQuotes = 0;
+
+ for (; *start; start++) {
+ if (inEscape) {
+ *dataPut++ = *start; /* Always goes verbatim */
+ inEscape = 0;
+ } else {
+ if (*start == '\\') {
+ inEscape = 1; /* Do not copy \ into the data */
+ } else if (*start == '\'') {
+ inQuotes = 1-inQuotes; /* Do not copy ' into the data */
+ } else {
+ /* Replace , with |, unless in quotes */
+ *dataPut++ = inQuotes ? *start : ((*start==find) ? replace_with : *start);
+ }
+ }
+ }
+ if (start != dataPut)
+ *dataPut = 0;
+ return dataPut;
+}