ascii-chat 0.8.38
Real-time terminal-based video chat with ASCII art conversion
Loading...
Searching...
No Matches
video.c
Go to the documentation of this file.
1
7#include <ascii-chat/asciichat_errno.h>
8#include <stdbool.h>
9#include <stddef.h>
10
11// Image validation stub - returns ASCIICHAT_OK (0) on success
12asciichat_error_t image_validate_dimensions(size_t width, size_t height) {
13 if (width > 0 && height > 0 && width <= 10000 && height <= 10000) {
14 return ASCIICHAT_OK;
15 }
16 return ERROR_INVALID_PARAM;
17}
asciichat_error_t image_validate_dimensions(size_t width, size_t height)
Definition video.c:12