Advertisement
xangelux

Maquina virtual: 1 lib/opls.h

Dec 22nd, 2011
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. #ifndef _OPLS_H_
  2. #define _OPLS_H_
  3.  
  4. typedef struct{
  5.     char operacion[3], op1[2], op2[2];
  6.     long op2hex;
  7.     struct ins *ant;
  8. }ins;
  9.  
  10. typedef struct{
  11.     ins *beg,*end;
  12.     int size;
  13. }ls;
  14.  
  15. ls* creals(ls *);
  16. int dells(ls *);
  17. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement