[prev] 99 [next]

void StackPush(int v) {
   stackObject.top++;
   int i = stackObject.top;
   stackObject.item[i] = v;
}