c64a700223
A lot of code cleanup, plus beginning the implementation of a datastore.
20 lines
423 B
C
20 lines
423 B
C
#include "ipfs/repo/fsrepo/fs_repo.h"
|
|
|
|
int test_repo_fsrepo_open_config() {
|
|
struct FSRepo* fs_repo;
|
|
struct RepoConfig* repo_config;
|
|
|
|
const char* path = "/tmp/.ipfs";
|
|
|
|
// create the struct
|
|
int retVal = ipfs_repo_fsrepo_new((char*)path, repo_config, &fs_repo);
|
|
if (retVal == 0)
|
|
return 0;
|
|
|
|
// open the repository and read the file
|
|
retVal = ipfs_repo_fsrepo_open(fs_repo);
|
|
if (retVal == 0)
|
|
return 0;
|
|
|
|
return 1;
|
|
}
|