summaryrefslogtreecommitdiffstats
path: root/src/modules/separator/option.h
diff options
context:
space:
mode:
authorsumuel <samuel@yakubos.org>2026-08-17 20:44:55 +0000
committersumuel <samuel@yakubos.org>2026-08-17 20:44:55 +0000
commit76424950e373d3b04ac3dd13019151bfba3e8423 (patch)
tree4c3cfdbda039e592b9186be3e28f8d7cfd439e8a /src/modules/separator/option.h
Add the files
Diffstat (limited to 'src/modules/separator/option.h')
-rw-r--r--src/modules/separator/option.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/modules/separator/option.h b/src/modules/separator/option.h
new file mode 100644
index 0000000..510132c
--- /dev/null
+++ b/src/modules/separator/option.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "common/option.h"
+
+typedef struct FFSeparatorOptions {
+ FFstrbuf string;
+ FFstrbuf outputColor;
+ uint32_t times;
+} FFSeparatorOptions;
+
+static_assert(sizeof(FFSeparatorOptions) <= FF_OPTION_MAX_SIZE, "FFSeparatorOptions size exceeds maximum allowed size");