mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
15 lines
221 B
C++
15 lines
221 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <ostream>
|
|
#include <new>
|
|
|
|
struct StoragePtr;
|
|
|
|
extern "C" {
|
|
|
|
StoragePtr *storage_new_in_memory();
|
|
|
|
void storage_free(StoragePtr *storage);
|
|
|
|
} // extern "C"
|