view final_main/src/stub.cbc @ 0:83f997abf3b5

first commit
author e155702
date Thu, 14 Feb 2019 16:51:50 +0900
parents
children
line wrap: on
line source

__code put(struct Context* context,
           struct Tree* tree,
           struct Node* root,
           struct Allocate* allocate)
{
    /* 実装コードは省略 */
}

__code put_stub(struct Context* context)
{
    goto put(context,
             &context->data[Tree]->tree,
             context->data[Tree]->tree.root,
             &context->data[Allocate]->allocate);
}