c-ipfs/include/ipfs/node/node.h

15 lines
182 B
C
Raw Normal View History

2016-11-14 02:01:51 +00:00
/**
* An implementation of an IPFS node
* Copying the go-ipfs-node project
*/
#include <stdint.h>
struct Link {
char* name;
uint64_t size;
struct Cid cid; // content id
};