Subject: | ishexnumber? |
As you see above, the function ishexnumber isn't always available, for
example, in mswin32 platforms.
So, I made a patch as follows, and patched it within my personal use.
--- XS.xs.org Wed Jan 23 18:35:25 2008
+++ XS.xs Wed Jan 23 18:35:52 2008
@@ -34,6 +34,9 @@
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
};
+#ifdef WIN32
+ #define ishexnumber(s) isXDIGIT(s)
+#endif
SV *encode_uri_component(SV *str){
int slen = SvCUR(str);