#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <expat.h>
#include <unistd.h>
#include <ctype.h>
#include "votParseP.h"
#include "votParse.h"
Functions | |
| void | vot_startElement (void *user, const char *name, const char **atts) |
| CB whenever a start tag is seen (internal method). | |
| void | vot_endElement (void *user, const char *name) |
| CB whenever an end tag is seen (internal method). | |
| void | vot_charData (void *user, const XML_Char *s, int len) |
| Handle non-element character strings (internal method). | |
Variables | |
| Stack * | element_stack |
VOTEXPATCB.C -- (Internal) Expat XML Parser callback methods.
| vot_charData | ( | void * | user, | |
| const XML_Char * | s, | |||
| int | len | |||
| ) |
Handle non-element character strings (internal method).
vot_charData -- Handle non-element character strings (internal method)
| user | User data (not used) | |
| s | content string | |
| len | length of string |
| vot_endElement | ( | void * | user, | |
| const char * | name | |||
| ) |
CB whenever an end tag is seen (internal method).
vot_endElement -- CB whenever an end tag is seen (internal method)
| user | User data (not used) | |
| name | The name in the XML tag |
| vot_startElement | ( | void * | user, | |
| const char * | name, | |||
| const char ** | atts | |||
| ) |
CB whenever a start tag is seen (internal method).
vot_startElement -- CB whenever a start tag is seen (internal method)
| user | User data (not used) | |
| name | The name in the XML tag. | |
| atts | An array of attributes. |
1.5.9