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

手机短信编程

开发平台:

Unix_Linux

  1. /* -------------------------------------------------------------------- */
  2. /* SMS Client, send messages to mobile phones and pagers */
  3. /* */
  4. /* parserc.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: parserc.h,v 5.1 1998/02/01 07:10:39 root Exp root $
  28.    -------------------------------------------------------------------- */
  29. #ifndef _PARSERC_H
  30. #define _PARSERC_H
  31. #include "sms_list.h"
  32. /* -------------------------------------------------------------------- */
  33. char *SMS_get_smsrc_value(FILE *fp, char *name);
  34. char *SMS_dual_get_smsrc_value(FILE **fp, char *name);
  35. int SMS_open_dual_getnamevalue_numeric(char *name, long *value);
  36. void SMS_dual_closerc(FILE **fp);
  37. void SMS_dual_openrc(FILE **fp);
  38. char *get_service_value(char *service, char *name);
  39. char *get_protocol(char *service);
  40. int SMS_getnamevalue_numeric(FILE *fp, char *name, long *value);
  41. SMS_list *SMS_expandnumber(FILE *fp[2], char *id, char *number, char *default_service);
  42. int is_name(char *name);
  43. int validate_expanded_numbers(SMS_list *numbers);
  44. int is_numeric(char *ptr);
  45. #endif
  46. /* -------------------------------------------------------------------- */
  47. /* -------------------------------------------------------------------- */