Added cache.c/.h

This commit is contained in:
2020-12-19 17:38:40 +01:00
parent 5e9c98d67f
commit f6ac55adaf
2 changed files with 19 additions and 0 deletions

8
src/cache.c Normal file
View File

@ -0,0 +1,8 @@
/**
* Necronda Web Server
* File cache implementation
* src/cache.c
* Lorenz Stechauner, 2020-12-19
*/
#include "cache.h"

11
src/cache.h Normal file
View File

@ -0,0 +1,11 @@
/**
* Necronda Web Server
* File cache implementation (header file)
* src/cache.h
* Lorenz Stechauner, 2020-12-19
*/
#ifndef NECRONDA_SERVER_CACHE_H
#define NECRONDA_SERVER_CACHE_H
#endif //NECRONDA_SERVER_CACHE_H