blob: fcb52579744df7e1a0992f68f9047540cc7cf96a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* See LICENSE file for copyright and license details. */
#include <stdint.h>
#include <stdio.h>
extern char *argv0;
#define LEN(x) (sizeof (x) / sizeof *(x))
void ff_read_header(uint32_t *width, uint32_t *height);
void ff_write_header(uint32_t width, uint32_t height);
int parse_mask(const char *, uint16_t mask[3]);
int fshut(FILE *, const char *);
#undef reallocarray
void *reallocarray(void *, size_t, size_t);
void *ereallocarray(void *optr, size_t nmemb, size_t size);
#undef strtonum
long long strtonum(const char *, long long, long long, const char **);
long long estrtonum(const char *, long long, long long);
|