Displaying 1 result from an estimated 1 matches for "bchar".
Did you mean:
char
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...'()," /* RFC 1738 */
+#define UNRESERVED ALPHA""DIGIT""SAFE""EXTRA /* RFC 1738 */
+#define ESCAPE "%" /* RFC 1738 */
+#define UCHAR UNRESERVED""ESCAPE /* RFC 1738 */
+#define ACHAR UCHAR"&=~" /* RFC 2192 */
+#define BCHAR ACHAR":@/" /* RFC 2192 */
+#define HEXDIG DIGIT"ABCDEFabcdef" /* RFC 2234 */
+#define HOST_CHARS ALPHA".:-"DIGIT /* RFC 1738 */
+#define DATETIME_CHARS DIGIT".+-:TZ" /* RFC 3339 */
+
+// any CHAR except "(" / ")" / "{" /...