29 lines
547 B
C
29 lines
547 B
C
/*
|
|
* tests du systeme de cache
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "cachengn.h"
|
|
|
|
#define IMGW 320
|
|
#define IMGH 240
|
|
#define SIZE 20
|
|
#define NBRI 1000
|
|
|
|
/* ------------------------------------------------------------ */
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int foo;
|
|
|
|
fprintf(stderr, "Test of the cache engin - %s %s\n", __DATE__, __TIME__);
|
|
cachengn_print_version(1);
|
|
|
|
foo = init_empty_cache(IMGW, IMGH, SIZE, NBRI);
|
|
fprintf(stderr, "init_empty_cache --> %d\n", foo);
|
|
|
|
return 0;
|
|
}
|
|
/* ------------------------------------------------------------ */
|
|
|