previous next Up Title Contents Index

Pinon tyhjentäminen
    void destruct (struct pino *p) /* pinon tyhjennys */
    {
        while (!(empty(p)))
        {
            pop(p);
        }
    } 

previous next Up Title Contents Index