c-ipfs/include/ipfs/importer/resolver.h

14 lines
432 B
C
Raw Normal View History

#pragma once
#include "ipfs/merkledag/node.h"
2017-02-27 17:27:40 +00:00
#include "ipfs/core/ipfs_node.h"
/**
* Interogate the path and the current node, looking
* for the desired node.
* @param path the current path
* @param from the current node (or NULL if it is the first call)
* @returns what we are looking for, or NULL if it wasn't found
*/
2017-02-27 17:27:40 +00:00
struct Node* ipfs_resolver_get(const char* path, struct Node* from, const struct IpfsNode* ipfs_node);