Delta Chat Core C-API
dc_dehtml.h
1 #ifndef __DC_DEHTML_H__
2 #define __DC_DEHTML_H__
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
6 
7 
8 /*** library-internal *********************************************************/
9 
10 char* dc_dehtml(char* buf_terminated); /* dc_dehtml() returns way too many lineends; however, an optimisation on this issue is not needed as the lineends are typically remove in further processing by the caller */
11 
12 
13 #ifdef __cplusplus
14 } /* /extern "C" */
15 #endif
16 #endif /* __DC_DEHTML_H__ */
17