mirror of
https://github.com/openstreetmap/mod_tile.git
synced 2025-08-03 07:49:53 +00:00
17 lines
208 B
C
17 lines
208 B
C
#ifndef STORE_NULL_H
|
|
#define STORE_NULL_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "store.h"
|
|
|
|
struct storage_backend * init_storage_null();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* STORE_NULL_H */
|