Advertisement
liz28

Untitled

Jan 23rd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.34 KB | None | 0 0
  1. struct Instruccion
  2. {
  3.     char command[20];
  4.     int tiempo;
  5.     struct Instruccion *Next;
  6. };
  7.  
  8. typedef struct Instruccion Ins;
  9.  
  10. Ins* anadirInstruccion(Ins *,char instruccion[20], int tiempo); //, Ins *);
  11. void recorrer (Ins *);
  12. Ins* mandarInstrucciones(Ins *); //éste método simula el envío de instrucciones, en realidad borra la lista encadenad
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement