#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 107 of file TransferEncoding.cpp.
108{
109 if (isdigit(c))
110 return c - '0';
111 else if (('A' <= c) && (c <= 'F'))
112 return c - 'A' + 10;
113 else if (('a' <= c) && (c <= 'f'))
114 return c - 'a' + 10;
115 else
116 {
118 return -1;
119 }
120}
#define __DCL_ASSERT(expr)