Mercurial > hg > Gears > GearsAgda
view src/allocate/allocateContext.h @ 118:32773f506410
remove code stack, add continuation of rotateL/totateR
author | ikkun |
---|---|
date | Mon, 26 Sep 2016 19:54:24 +0900 |
parents | 1eb599acffe4 |
children |
line wrap: on
line source
/* Context definition for allocate example */ enum Code { Code1, Code2, Code3, Allocate, Exit, }; struct Context { int codeSize; __code (**code) (struct Context *); void* heap; int dataSize; union Data **data; }; union Data { char data[8]; long count; struct Allocate { long size; enum Code next; } allocate; };