]> begriffs open source - sa-parse/commit
ical parser main
authorJoe Nelson <joe@begriffs.com>
Sat, 16 Aug 2025 05:00:00 +0000 (00:00 -0500)
committerJoe Nelson <joe@begriffs.com>
Sat, 16 Aug 2025 05:00:00 +0000 (00:00 -0500)
commitbefa485dd86baeb10508b81ca6f4eaaa4610754f
tree362dabee495a1eca6105c3958eed2c0b86bcc513
parent620073825bdcd1aa063f07f94d750837ac2b27a7
ical parser
19 files changed:
src/ical.l [new file with mode: 0644]
src/ical.y [new file with mode: 0644]
src/ical_driver.c [new file with mode: 0644]
src/ical_parser.c [new file with mode: 0644]
src/ical_parser.h [new file with mode: 0644]
src/meson.build
tests/ical/invalid/empty_file.ics [new file with mode: 0644]
tests/ical/invalid/mismatched_component_names.ics [new file with mode: 0644]
tests/ical/invalid/missing_begin.ics [new file with mode: 0644]
tests/ical/invalid/missing_end.ics [new file with mode: 0644]
tests/ical/invalid/unclosed_event.ics [new file with mode: 0644]
tests/ical/valid/basic_calendar.ics [new file with mode: 0644]
tests/ical/valid/calendar_with_event.ics [new file with mode: 0644]
tests/ical/valid/event_with_properties.ics [new file with mode: 0644]
tests/ical/valid/minimal_calendar.ics [new file with mode: 0644]
tests/ical/valid/property_with_parameters.ics [new file with mode: 0644]
tests/ical/valid/real_world_event.ics [new file with mode: 0644]
tests/ical/valid/simple_timezone.ics [new file with mode: 0644]
tests/meson.build