token.h
上传用户:mei_mei897
上传日期:2007-01-05
资源大小:82k
文件大小:2k
源码类别:

手机短信编程

开发平台:

Unix_Linux

  1. /* -------------------------------------------------------------------- */
  2. /* SMS Client, send messages to mobile phones and pagers */
  3. /* */
  4. /* token.h */
  5. /* */
  6. /*  Copyright (C) 1997,1998 Angelo Masci */
  7. /* */
  8. /*  This library is free software; you can redistribute it and/or */
  9. /*  modify it under the terms of the GNU Library General Public */
  10. /*  License as published by the Free Software Foundation; either */
  11. /*  version 2 of the License, or (at your option) any later version. */
  12. /* */
  13. /*  This library is distributed in the hope that it will be useful, */
  14. /*  but WITHOUT ANY WARRANTY; without even the implied warranty of */
  15. /*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU */
  16. /*  Library General Public License for more details. */
  17. /* */
  18. /*  You should have received a copy of the GNU Library General Public */
  19. /*  License along with this library; if not, write to the Free */
  20. /*  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
  21. /* */
  22. /*  You can contact the author at this e-mail address: */
  23. /* */
  24. /*  angelo@styx.demon.co.uk */
  25. /* */
  26. /* -------------------------------------------------------------------- */
  27. /* $Id$
  28.    -------------------------------------------------------------------- */
  29. #define NULL_TOKEN  0
  30. #define UNKNOWN_TOKEN  1
  31. #define STRING_TOKEN 2
  32. #define ASSIGNMENT_TOKEN 3
  33. #define COMMENT_TOKEN 4
  34. #define QUOTED_STRING_TOKEN 5
  35. #define QUOTED_STRING_ERROR_TOKEN 6
  36. #define BACKSLASH_TOKEN 11
  37. #define ALERT_TOKEN 12
  38. #define BACKSPACE_TOKEN 13
  39. #define FORMFEED_TOKEN 14
  40. #define NEWLINE_TOKEN 15
  41. #define CARRIAGE_RETURN_TOKEN 16
  42. #define HORIZONTAL_TAB_TOKEN 17
  43. #define VERTICLE_TAB_TOKEN 18
  44. #define ERROR_HEX_TOKEN 19
  45. #define HEX_TOKEN 20
  46. #define SINGLE_QUOTED_STRING_TOKEN 21
  47. #define SINGLE_QUOTED_STRING_ERROR_TOKEN 22
  48. #define QUOTE_TOKEN 24
  49. #define SINGLE_QUOTE_TOKEN 25
  50. /* -------------------------------------------------------------------- */
  51. /* -------------------------------------------------------------------- */
  52. char *get_line(char *str, int n, int *line_count, FILE *fp);
  53. int get_token(char *token, int maxlen, char *ptr, char **eptr);
  54. /* -------------------------------------------------------------------- */
  55. /* -------------------------------------------------------------------- */