Libav
|
#include <stdint.h>
#include <stdio.h>
Go to the source code of this file.
Defines | |
#define | WRITE_1D_FUNC_ARGV(name, type, linebrk, fmtstr,...) |
#define | WRITE_1D_FUNC(name, type, fmtstr, linebrk) WRITE_1D_FUNC_ARGV(name, type, linebrk, fmtstr, data[i]) |
#define | WRITE_2D_FUNC(name, type) |
Functions | |
void | write_int8_array (const int8_t *, int) |
void | write_uint8_array (const uint8_t *, int) |
void | write_uint16_array (const uint16_t *, int) |
void | write_uint32_array (const uint32_t *, int) |
void | write_float_array (const float *, int) |
void | write_int8_2d_array (const void *, int, int) |
void | write_uint8_2d_array (const void *, int, int) |
void | write_uint32_2d_array (const void *, int, int) |
void | write_fileheader (void) |
Write a standard file header. |
#define WRITE_1D_FUNC | ( | name, | |
type, | |||
fmtstr, | |||
linebrk | |||
) | WRITE_1D_FUNC_ARGV(name, type, linebrk, fmtstr, data[i]) |
Definition at line 41 of file tableprint.h.
#define WRITE_1D_FUNC_ARGV | ( | name, | |
type, | |||
linebrk, | |||
fmtstr, | |||
... | |||
) |
#define WRITE_2D_FUNC | ( | name, | |
type | |||
) |
void write_fileheader | ( | void | ) |
Write a standard file header.
Definition at line 37 of file tableprint.c.
Referenced by main(), and WRITE_1D_FUNC_ARGV().