diff include/edl.h @ 7:fee08fa622e1

automake: don't expose private strings API also use size_t rather than int for array sizes for... obvious reasons
author Paper <mrpapersonic@gmail.com>
date Mon, 15 Jan 2024 06:42:30 -0500
parents 7137fbac0b85
children 0c98b46eaf73
line wrap: on
line diff
--- a/include/edl.h	Thu Dec 28 16:47:24 2023 -0500
+++ b/include/edl.h	Mon Jan 15 06:42:30 2024 -0500
@@ -49,8 +49,8 @@
 
 typedef struct {
 	EDL_line* arr;
-	int capacity;
-	int size;
+	size_t capacity;
+	size_t size;
 } EDL;
 
 EDL EDL_parse(const char* text, size_t length);