/*----------------------------------------------------------------------------- * Variable *-----------------------------------------------------------------------------*/ char*value[MAXVAL]; int sp=0; /*----------------------------------------------------------------------------- * Function *-----------------------------------------------------------------------------*/ void push (char*f); char* pop (void);
/* * === FUNCTION ====================================================================== * Name: main * Description: * ===================================================================================== */ int main (int argc,char*argv[]) { char*buf; char*delim=" \n"; char*p; int i=0; int num=0;
returnEXIT_SUCCESS; }/* ---------- end of function main ---------- */
/* * === FUNCTION ====================================================================== * Name: pop * Description: stack pop ,return stack value * ===================================================================================== */ char* pop (void) { if(sp > 0) return(value[--sp]); else{ printf("error:stack empty\n"); exit(1); } }/* ----- end of function pop ----- */