Mercurial > hg > Papers > 2018 > mitsuki-prosym
annotate Paper/src/ex_code2 @ 0:dbbe5ef644fb
add
author | mir3636 |
---|---|
date | Tue, 21 Nov 2017 19:56:10 +0900 |
parents | |
children |
rev | line source |
---|---|
0 | 1 __code pushSingleLinkedStack_stub(struct Context* context) { |
2 SingleLinkedStack* stack = (SingleLinkedStack*)GearImpl(context, Stack, stack); | |
3 Data* data = Gearef(context, Stack)->data; | |
4 enum Code next = Gearef(context, Stack)->next; | |
5 goto pushSingleLinkedStack(context, stack, data, next); | |
6 } | |
7 |