15 lines
308 B
C
15 lines
308 B
C
|
//
|
||
|
// builder.c
|
||
|
// c-ipfs
|
||
|
//
|
||
|
// Created by John Jones on 10/27/16.
|
||
|
// Copyright © 2016 JMJAtlanta. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#include "builder.h"
|
||
|
|
||
|
int core_builder_new_node(struct Context* context, struct BuildCfg* build_cfg, struct IpfsNode* buildConfig) {
|
||
|
// TODO: Implement this methods
|
||
|
return 0;
|
||
|
}
|