Advertisement
_the_elf_

token.h

Oct 25th, 2013
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #ifndef TOKEN_H
  2. #define TOKEN_H
  3.  
  4. typedef struct Token
  5. {
  6.     int currentPosition;
  7.     int direction;
  8. } token;
  9.  
  10. void create(token *t, int value);
  11. void move(token *t, int a);
  12.  
  13. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement