| 4358:a6fc799d5c40 | 4359:cf899ee07d1d |
|---|---|
| 42 | 42 |
| 43 #ifdef _WIN32 | 43 #ifdef _WIN32 |
| 44 #include "win32dep.h" | 44 #include "win32dep.h" |
| 45 #endif | 45 #endif |
| 46 | 46 |
| 47 gchar *strip_html(gchar *text) | 47 gchar *strip_html(const gchar *text) |
| 48 { | 48 { |
| 49 int i, j, k; | 49 int i, j, k; |
| 50 int visible = 1; | 50 int visible = 1; |
| 51 gchar *text2 = g_strdup(text); | 51 gchar *text2 = g_strdup(text); |
| 52 | 52 |