| OLD | NEW |
| 1 #include <cstdlib> | 1 #include <cstdlib> |
| 2 #include <cstring> | 2 #include <cstring> |
| 3 #include <cstdio> | 3 #include <cstdio> |
| 4 #include <ctype.h> | 4 #include <ctype.h> |
| 5 | 5 |
| 6 #include "../hunspell/csutil.hxx" | 6 #include "../hunspell/csutil.hxx" |
| 7 #include "htmlparser.hxx" | 7 #include "htmlparser.hxx" |
| 8 | 8 |
| 9 | 9 |
| 10 #ifndef W32 | 10 #ifndef W32 |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 break; | 142 break; |
| 143 case ST_CHAR_ENTITY: // SGML element | 143 case ST_CHAR_ENTITY: // SGML element |
| 144 if ((tolower(line[actual][head]) == ';')) { | 144 if ((tolower(line[actual][head]) == ';')) { |
| 145 state = prevstate; | 145 state = prevstate; |
| 146 head--; | 146 head--; |
| 147 } | 147 } |
| 148 } | 148 } |
| 149 if (next_char(line[actual], &head)) return NULL; | 149 if (next_char(line[actual], &head)) return NULL; |
| 150 } | 150 } |
| 151 } | 151 } |
| OLD | NEW |