view final_pre/src/stub.cbc @ 7:0e8b9646d43f

add final_pre
author e155702
date Sun, 17 Feb 2019 05:39:59 +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);
}