html.h
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:0k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  * html.h - declarations for functions that manipulate HTML
  3.  *
  4.  * Lars Wirzenius for WapIT Ltd.
  5.  */
  6. #ifndef HTML_H
  7. #define HTML_H
  8. #include <stddef.h>
  9. #include "gwlib/gwlib.h"
  10. /*
  11.  * Remove HTML tags and decode HTML entities in `html'. Return the new
  12.  * string.
  13.  * 
  14.  * Do something intelligent even with broken HTML so that the
  15.  * function never fails.
  16.  */
  17. Octstr *html_to_sms(Octstr *html);
  18. #endif