diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-07-08 15:22:05 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-07-08 15:22:05 +0100 |
commit | c271eb36656a4ff88a9c8c1d59934949260275a3 (patch) | |
tree | 3dd586e38b5b37cfebc7c12b6ff6f434904167c7 /src/libserver/html.h | |
parent | b266445f47dec06392a7e058f499325fa3c052b9 (diff) | |
download | rspamd-c271eb36656a4ff88a9c8c1d59934949260275a3.tar.gz rspamd-c271eb36656a4ff88a9c8c1d59934949260275a3.zip |
[Rework] Add C++ guards to all headers
Diffstat (limited to 'src/libserver/html.h')
-rw-r--r-- | src/libserver/html.h | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/src/libserver/html.h b/src/libserver/html.h index ada6dca68..86a266a62 100644 --- a/src/libserver/html.h +++ b/src/libserver/html.h @@ -8,6 +8,10 @@ #include "config.h" #include "mem_pool.h" +#ifdef __cplusplus +extern "C" { +#endif + /* * HTML content flags */ @@ -130,13 +134,13 @@ struct html_content { */ guint rspamd_html_decode_entitles_inplace (gchar *s, gsize len); -GByteArray* rspamd_html_process_part (rspamd_mempool_t *pool, - struct html_content *hc, - GByteArray *in); +GByteArray *rspamd_html_process_part (rspamd_mempool_t *pool, + struct html_content *hc, + GByteArray *in); -GByteArray* rspamd_html_process_part_full (rspamd_mempool_t *pool, - struct html_content *hc, - GByteArray *in, GList **exceptions, GHashTable *urls, GHashTable *emails); +GByteArray *rspamd_html_process_part_full (rspamd_mempool_t *pool, + struct html_content *hc, + GByteArray *in, GList **exceptions, GHashTable *urls, GHashTable *emails); /* * Returns true if a specified tag has been seen in a part @@ -148,7 +152,7 @@ gboolean rspamd_html_tag_seen (struct html_content *hc, const gchar *tagname); * @param id * @return */ -const gchar* rspamd_html_tag_by_id (gint id); +const gchar *rspamd_html_tag_by_id (gint id); /** * Returns HTML tag id by name @@ -165,8 +169,12 @@ gint rspamd_html_tag_by_name (const gchar *name); * @param comp * @return */ -struct rspamd_url * rspamd_html_process_url (rspamd_mempool_t *pool, - const gchar *start, guint len, - struct html_tag_component *comp); +struct rspamd_url *rspamd_html_process_url (rspamd_mempool_t *pool, + const gchar *start, guint len, + struct html_tag_component *comp); + +#ifdef __cplusplus +} +#endif #endif |