diff include/edl.h @ 12:0cc2555db371

*: make our string functions not stupid strncat() made everything slow! new addition internally: an EDL_header structure to make things not stupid. if we were using C++ it wouldn't really be necessary, but alas :)
author Paper <paper@paper.us.eu.org>
date Wed, 27 Mar 2024 13:38:30 -0400
parents 0c98b46eaf73
children 41b74137e201
line wrap: on
line diff
--- a/include/edl.h	Fri Mar 22 20:51:46 2024 -0400
+++ b/include/edl.h	Wed Mar 27 13:38:30 2024 -0400
@@ -16,7 +16,8 @@
 
 typedef enum {
 	EDL_PARSE_ERROR_SUCCESS = 0,
-	EDL_PARSE_ERROR_OUT_OF_MEMORY
+	EDL_PARSE_ERROR_OUT_OF_MEMORY,
+	EDL_PARSE_ERROR_HEADER
 } EDL_parse_error_t;
 
 typedef struct {