view paper/src/stub.cbc @ 19:34de798b11c3

Add stub description
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Fri, 20 Jan 2017 14:53:16 +0900
parents
children ebe838b83ada
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);
}