aboutsummaryrefslogtreecommitdiff
path: root/test/102_gendata_esep/gendata_esep_tests.c
blob: bc7ce25eee84793ff744359dda29f468aec15d6b (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_esep(const void *, void *);

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

	gendata_cocsep(buf_c);
	result = gendata_esep(buf_c, buf_e);

	printf("nothing\n");

	return 0;
}

Generated with cgit - Back to sebastiano.tronto.net