c-ipfs/include/ipfs/node/node.h
2016-11-13 21:01:51 -05:00

15 lines
182 B
C

/**
* 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
};