annotate paper/src/stub.cbc @ 2:c7acb9211784

add code, figure. and paper fix content
author ryokka
date Mon, 27 Jan 2020 20:41:36 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
1 __code put(struct Context* context,
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
2 struct Tree* tree,
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
3 struct Node* root,
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
4 struct Allocate* allocate)
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
5 {
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
6 /* 実装コードは省略 */
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
7 }
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
8
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
9 __code put_stub(struct Context* context)
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
10 {
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
11 goto put(context,
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
12 &context->data[Tree]->tree,
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
13 context->data[Tree]->tree.root,
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
14 &context->data[Allocate]->allocate);
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
15 }
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
16
c7acb9211784 add code, figure. and paper fix content
ryokka
parents:
diff changeset
17