aboutsummaryrefslogtreecommitdiff
path: root/test/101_gendata_eoesep/gendata_eoesep_tests.c
blob: e03e95da4800221079d4f71025e6b1925c3928e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "../test.h"

#define CSIZE 1200000
#define ESIZE 250000000

uint32_t buf_c[CSIZE/4];
uint32_t buf_e[ESIZE/4];

size_t gendata_cocsep(void *);
size_t gendata_eoesep(uint8_t, uint8_t, const void *, void *);

int main(void) {
	uint32_t i;
	size_t result;

	gendata_cocsep(buf_c);
	result = gendata_eoesep(0U, 4U, buf_c, buf_e);

	printf("nothing\n");

	return 0;
}

Generated with cgit - Back to sebastiano.tronto.net