[Asterisk-cvs] asterisk/include/asterisk utils.h,1.43,1.44

russell russell
Thu Sep 22 22:59:46 CDT 2005


Update of /usr/cvsroot/asterisk/include/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv15227/include/asterisk

Modified Files:
	utils.h 
Log Message:
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


Index: utils.h
===================================================================
RCS file: /usr/cvsroot/asterisk/include/asterisk/utils.h,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- utils.h	8 Sep 2005 02:19:02 -0000	1.43
+++ utils.h	23 Sep 2005 02:57:14 -0000	1.44
@@ -191,4 +191,12 @@
 #define ast_pthread_create(a,b,c,d) ast_pthread_create_stack(a,b,c,d,0)
 extern int ast_pthread_create_stack(pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void *), void *data, size_t stacksize);
 
+/*!
+	\brief Process a string to find and replace characters
+	\param start The string to analyze
+	\param find The character to find
+	\param replace_with The character that will replace the one we are looking for
+*/
+char *ast_process_quotes_and_slashes(char *start, char find, char replace_with);
+
 #endif /* _ASTERISK_UTILS_H */




More information about the svn-commits mailing list