taskwarrior/lib/taskchampion.h
2022-01-25 02:26:04 +00:00

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"