The R Project SVN R

Rev

Rev 68956 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 68956 Rev 74917
Line 16... Line 16...
16
 *  https://www.R-project.org/Licenses/
16
 *  https://www.R-project.org/Licenses/
17
 */
17
 */
18
 
18
 
19
/* used on console.c, EncodeString and do_cat */
19
/* used on console.c, EncodeString and do_cat */
20
 
20
 
21
/* \001 is STX, \002 is ETX: they should not occur in other text,
21
/* \002 is STX, \003 is ETX: they should not occur in other text,
22
   But we use a 3-byte escape to be even safer. */
22
   But we use a 3-byte escape to be even safer. */
23
 
23
 
24
#ifdef IN_CONSOLE
24
#ifdef IN_CONSOLE
25
char UTF8in[4] = "\002\377\376", UTF8out[4] = "\003\377\376";
25
char UTF8in[4] = "\002\377\376", UTF8out[4] = "\003\377\376";
26
#else
26
#else