ics_cli/unit-tests/test_parse_ics_file.c

13 lines
223 B
C
Raw Normal View History

2024-07-09 08:08:01 +02:00
#include "../src/list_handling.h"
#include "../src/parse_ics.h"
#include <stdio.h>
int main() {
// initialize empty list
struct event *head = NULL;
parse_ics_file("../tests/calendar.ics", &head);
print_list(head);
}