html.h
资源名称:gateway-1.2.1 [点击查看]
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:0k
源码类别:
手机WAP编程
开发平台:
WINDOWS
- /*
- * html.h - declarations for functions that manipulate HTML
- *
- * Lars Wirzenius for WapIT Ltd.
- */
- #ifndef HTML_H
- #define HTML_H
- #include <stddef.h>
- #include "gwlib/gwlib.h"
- /*
- * Remove HTML tags and decode HTML entities in `html'. Return the new
- * string.
- *
- * Do something intelligent even with broken HTML so that the
- * function never fails.
- */
- Octstr *html_to_sms(Octstr *html);
- #endif