aboutsummaryrefslogtreecommitdiffstats
path: root/xmlregexp.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2005-10-27 11:56:20 +0000
committerDaniel Veillard <veillard@src.gnome.org>2005-10-27 11:56:20 +0000
commit7802ba56ff32eb503ac34885e1ce61b60a01d701 (patch)
treebdba1376ea3d616efe8839c47327ecf1bef6c354 /xmlregexp.c
parent6e84bb28ddc0f51c787766c14c3163d49bd1833d (diff)
downloadandroid_external_libxml2-7802ba56ff32eb503ac34885e1ce61b60a01d701.tar.gz
android_external_libxml2-7802ba56ff32eb503ac34885e1ce61b60a01d701.tar.bz2
android_external_libxml2-7802ba56ff32eb503ac34885e1ce61b60a01d701.zip
avoid function parameters names 'list' as this seems to give troubles with
* valid.c xmlregexp.c include/libxml/valid.h include/libxml/xmlregexp.h: avoid function parameters names 'list' as this seems to give troubles with VC6 and stl as reported by Samuel Diaz Garcia. Daniel
Diffstat (limited to 'xmlregexp.c')
-rw-r--r--xmlregexp.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/xmlregexp.c b/xmlregexp.c
index dea09771..fe028226 100644
--- a/xmlregexp.c
+++ b/xmlregexp.c
@@ -6455,7 +6455,7 @@ tail:
* xmlExpGetLanguage:
* @ctxt: the expression context
* @exp: the expression
- * @list: where to store the tokens
+ * @langList: where to store the tokens
* @len: the allocated lenght of @list
*
* Find all the strings used in @exp and store them in @list
@@ -6465,10 +6465,10 @@ tail:
*/
int
xmlExpGetLanguage(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp,
- const xmlChar**list, int len) {
- if ((ctxt == NULL) || (exp == NULL) || (list == NULL) || (len <= 0))
+ const xmlChar**langList, int len) {
+ if ((ctxt == NULL) || (exp == NULL) || (langList == NULL) || (len <= 0))
return(-1);
- return(xmlExpGetLanguageInt(ctxt, exp, list, len, 0));
+ return(xmlExpGetLanguageInt(ctxt, exp, langList, len, 0));
}
static int
@@ -6521,7 +6521,7 @@ tail:
* xmlExpGetStart:
* @ctxt: the expression context
* @exp: the expression
- * @list: where to store the tokens
+ * @tokList: where to store the tokens
* @len: the allocated lenght of @list
*
* Find all the strings that appears at the start of the languages
@@ -6533,10 +6533,10 @@ tail:
*/
int
xmlExpGetStart(xmlExpCtxtPtr ctxt, xmlExpNodePtr exp,
- const xmlChar**list, int len) {
- if ((ctxt == NULL) || (exp == NULL) || (list == NULL) || (len <= 0))
+ const xmlChar**tokList, int len) {
+ if ((ctxt == NULL) || (exp == NULL) || (tokList == NULL) || (len <= 0))
return(-1);
- return(xmlExpGetStartInt(ctxt, exp, list, len, 0));
+ return(xmlExpGetStartInt(ctxt, exp, tokList, len, 0));
}
/**