#include <ctype.h>
#include <dcl/Object.h>
#include <dcl/TransferEncoding.h>
Go to the source code of this file.
◆ __DCL_INCLUDED_CTYPE_H
| #define __DCL_INCLUDED_CTYPE_H |
◆ BASE64_PADDING_CHAR
| #define BASE64_PADDING_CHAR '=' |
◆ CR
◆ LF
◆ MAX_LINE_LENGTH
| #define MAX_LINE_LENGTH 76 |
◆ TAB
◆ hex2int()
Definition at line 102 of file TransferEncoding.cpp.
103{
104 if (isdigit(c))
105 return c - '0';
106 else if (('A' <= c) && (c <= 'F'))
107 return c - 'A' + 10;
108 else if (('a' <= c) && (c <= 'f'))
109 return c - 'a' + 10;
110 else {
112 return '\xff';
113 }
114}
#define __DCL_ASSERT(expr)