diff include/edl.h @ 6:7137fbac0b85

edl: expose EDL_reallocate() API to allow resizing the array
author Paper <mrpapersonic@gmail.com>
date Thu, 28 Dec 2023 16:47:24 -0500
parents c2408abb258a
children fee08fa622e1
line wrap: on
line diff
--- a/include/edl.h	Mon Dec 25 16:26:46 2023 -0500
+++ b/include/edl.h	Thu Dec 28 16:47:24 2023 -0500
@@ -54,6 +54,7 @@
 } EDL;
 
 EDL EDL_parse(const char* text, size_t length);
+int EDL_reallocate(EDL* edl, size_t new_capacity);
 char* EDL_dump(EDL edl);
 void EDL_free(EDL edl);