blob: 510132c109ac6ac08e9a473477e3f368578c0a60 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
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");
|