C library for parsing and handling RSS feeds and streams
C library for RSS files or streams
$ #include <mrss.h>
mrss_t *data = NULL;
mrss_parse_url(NULL, "http://example.com/feed.xml", &data, NULL);$ #include <mrss.h>
mrss_t *data = NULL;
mrss_parse_file("feed.xml", &data);$ #include <mrss.h>
for (mrss_item_t *item = data->item; item; item = item->next)
printf("%s - %s\n", item->title, item->link);$ #include <mrss.h>
mrss_t *data = NULL;
mrss_parse_buffer(xml_string, strlen(xml_string), &data);$ #include <mrss.h>
printf("Channel: %s\nDescription: %s\n", data->title, data->description);