view Paper/src/stub.cbc @ 28:423f59b098ac

Add svg
author soto <soto@cr.ie.u-ryukyu.ac.jp>
date Wed, 15 Feb 2023 17:18:23 +0900
parents a72446879486
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);
}