2021-10-17 20:23:35 +02:00
|
|
|
/*
|
|
|
|
* the chache engine - code
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "cachengn.h"
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------ */
|
|
|
|
|
|
|
|
void cachengn_print_version(int k)
|
|
|
|
{
|
|
|
|
|
|
|
|
printf("this is the version ZERO !!!\n");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------ */
|
2021-11-26 23:10:29 +01:00
|
|
|
int init_empty_cache(int iw, int ih, int szc, int nbre)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------ */
|
|
|
|
/* ------------------------------------------------------------ */
|