home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Amiga / Jeux / demos / crystalPPC.lha / token.h < prev    next >
C/C++ Source or Header  |  1998-01-15  |  395b  |  16 lines

  1. #ifndef TOKEN_H
  2. #define TOKEN_H
  3.  
  4. extern char* spaces;
  5. extern char* get_token (char** buf);
  6. extern float get_token_float (char** buf);
  7. extern int get_token_int (char** buf);
  8. #ifdef COMP_WCC
  9. extern void skip_token (char** buf, char* tok);
  10. extern void skip_token (char** buf, char* tok, char* msg);
  11. #else
  12. extern void skip_token (char** buf, char* tok, char* msg = NULL);
  13. #endif
  14.  
  15. #endif /*TOKEN_H*/
  16.