No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

symbole.c 339B

123456789101112131415161718192021222324
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include "pile.h"
  4. #include "symbole.h"
  5. void DROP(struct Pile *P)
  6. {
  7. struct Cell * tmp;
  8. if(P->nbElements != 0)
  9. {
  10. tmp = P->Pil;
  11. P->Pil = P->Pil->Suiv;
  12. free(tmp);
  13. }
  14. }
  15. void DUP(struct Pile * P)
  16. {
  17. struct Cell * double;
  18. double = malloc(sizeof(struct))
  19. }