# 3 "msg_075.c"
char str[] = "\x12345678123456781234567812345678";
char leading_zeroes = '\x0000000000000000000000000000020';
char char_hex4bit = '\xf';
char char_hex7bit = '\x7f';
char char_hex8bit = '\xff';
char char_hex9bit = '\x100';
char char_hex16bit = '\xffff';
char char_hex20bit = '\xfffff';
char char_hex31bit = '\x7fffffff';
char char_hex32bit = '\xffffffff';
char char_hex33bit = '\x1000000ff';
char char_hex36bit = '\xfffffffff';
int wide_hex4bit = L'\xf';
int wide_hex7bit = L'\x7f';
int wide_hex8bit = L'\xff';
int wide_hex9bit = L'\x100';
int wide_hex16bit = L'\xffff';
int wide_hex20bit = L'\xfffff';
int wide_hex31bit = L'\x7fffffff';
int wide_hex32bit = L'\xffffffff';
int wide_hex33bit = L'\x1000000ff';
int wide_hex36bit = L'\xfffffffff';
char char_string_hex4bit[] = "\xf";
char char_string_hex7bit[] = "\x7f";
char char_string_hex8bit[] = "\xff";
char char_string_hex9bit[] = "\x100";
char char_string_hex16bit[] = "\xffff";
char char_string_hex20bit[] = "\xfffff";
char char_string_hex31bit[] = "\x7fffffff";
char char_string_hex32bit[] = "\xffffffff";
char char_string_hex33bit[] = "\x1000000ff";
char char_string_hex36[] = "\xfffffffff";
int wide_string_hex4bit[] = L"\xf";
int wide_string_hex7bit[] = L"\x7f";
int wide_string_hex8bit[] = L"\xff";
int wide_string_hex9bit[] = L"\x100";
int wide_string_hex16bit[] = L"\xffff";
int wide_string_hex20bit[] = L"\xfffff";
int wide_string_hex31bit[] = L"\x7fffffff";
int wide_string_hex32bit[] = L"\xffffffff";
int wide_string_hex33bit[] = L"\x1000000ff";
int wide_string_hex36bit[] = L"\xfffffffff";