Hello,
I would like to know the best way to parse a large amount of xml from stdin (data getting piped) into a program I am writing using libxml2
. I can parse fine using a reader from the function xmlTextReaderPtr reader = xmlNewTextReaderFilename(filename)
when I have a char *
to the name of the file. I would preferably like to wind up with a reader so the rest of my program remains the same.
Thank you.