[prev] 104 [next]

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