summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2013-11-12 13:08:50 +0100
committerYorhel <git@yorhel.nl>2013-11-12 13:09:06 +0100
commite8bd5434b34dad7c7d173c5afdf9a0abe4ce2df1 (patch)
treeb130f8d07b36b8dec60b9582ce32b6fad590baa5
parent0c45e3772deee153b8dfb412675de6edbfa1252f (diff)
Remove function argument names in yxml.h
-rw-r--r--yxml.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/yxml.h b/yxml.h
index bf55353..5085bb5 100644
--- a/yxml.h
+++ b/yxml.h
@@ -115,10 +115,10 @@ typedef struct {
} yxml_t;
-void yxml_init(yxml_t *x, char *stack, size_t stacksize);
+void yxml_init(yxml_t *, char *, size_t);
-yxml_ret_t yxml_parse(yxml_t *x, int ch);
+yxml_ret_t yxml_parse(yxml_t *, int);
/* May be called after the last character has been given to yxml_parse().
@@ -127,7 +127,7 @@ yxml_ret_t yxml_parse(yxml_t *x, int ch);
* that don't end correctly. In particular, an error is returned when the XML
* document did not contain a (complete) root element, or when the document
* ended while in a comment or processing instruction. */
-yxml_ret_t yxml_eof(yxml_t *x);
+yxml_ret_t yxml_eof(yxml_t *);
/* vim: set noet sw=4 ts=4: */