Switch to unified view
a/src/internfile/htmlparse.cpp | b/src/internfile/htmlparse.cpp | ||
---|---|---|---|
... |
... |
||
21 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 |
21 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 |
22 | * USA |
22 | * USA |
23 | */ |
23 | */ |
24 | 24 | ||
25 | #ifndef lint |
25 | #ifndef lint |
26 | static char rcsid[] = "@(#$Id: htmlparse.cpp,v 1.7 2007-06-19 10:28:40 dockes Exp $ "; |
26 | static char rcsid[] = "@(#$Id: htmlparse.cpp,v 1.8 2007-12-13 06:58:21 dockes Exp $ "; |
27 | #endif |
27 | #endif |
28 | 28 | ||
29 | #include <algorithm> |
29 | #include <algorithm> |
30 | using std::find; |
30 | using std::find; |
31 | using std::find_if; |
31 | using std::find_if; |
32 | #include "htmlparse.h" |
32 | #include "htmlparse.h" |
33 | #include <stdio.h> |
33 | #include <stdio.h> |
34 | #include <ctype.h> |
34 | #include <ctype.h> |
35 | #include <cstring> |
||
35 | 36 | ||
36 | map<string, unsigned int> HtmlParser::named_ents; |
37 | map<string, unsigned int> HtmlParser::named_ents; |
37 | 38 | ||
38 | inline static bool |
39 | inline static bool |
39 | p_notdigit(char c) |
40 | p_notdigit(char c) |