42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
NULL pointers replaced by SQL NULL. %Q */
#define etPOINTER 15 /* The %p conversion */
#define etHTMLIZE 16 /* Make text safe for HTML */
#define etHTTPIZE 17 /* Make text safe for HTTP. "/" encoded as %2f */
#define etURLIZE 18 /* Make text safe for HTTP. "/" not encoded */
#define etFOSSILIZE 19 /* The fossil header encoding format. */
#define etPATH 20 /* Path type */
#define etWIKISTR 21 /* Wiki text rendered from a char* */
#define etWIKIBLOB 22 /* Wiki text rendered from a Blob* */
#define etSTRINGID 23 /* String with length limit for a UUID prefix */
/*
** An "etByte" is an 8-bit unsigned value.
*/
typedef unsigned char etByte;
|
|
|
|
|
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
NULL pointers replaced by SQL NULL. %Q */
#define etPOINTER 15 /* The %p conversion */
#define etHTMLIZE 16 /* Make text safe for HTML */
#define etHTTPIZE 17 /* Make text safe for HTTP. "/" encoded as %2f */
#define etURLIZE 18 /* Make text safe for HTTP. "/" not encoded */
#define etFOSSILIZE 19 /* The fossil header encoding format. */
#define etPATH 20 /* Path type */
#define etWIKISTR 21 /* Wiki text rendered from a char*: %w */
#define etWIKIBLOB 22 /* Wiki text rendered from a Blob*: %W */
#define etSTRINGID 23 /* String with length limit for a UUID prefix: %S */
/*
** An "etByte" is an 8-bit unsigned value.
*/
typedef unsigned char etByte;
|