File: escapes.c

package info (click to toggle)
sparse 0.6.4-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,868 kB
  • sloc: ansic: 46,050; sh: 614; python: 301; perl: 293; makefile: 279
file content (32 lines) | stat: -rw-r--r-- 1,259 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
static int e[] = { '\'', '\"', '\?', '\\',
                   '\a', '\b', '\f', '\n', '\r', '\t', '\v',
		   '\0', '\012', '\x7890', '\xabcd' };
static char *s = "\'\"\?\\ \a\b\f\n\r\t\v \377\xcafe";

static int bad_e[] = { '\c', '\0123', '\789', '\xdefg' };

static char a_hex[3] = "\x61\x62\x63";
static char b_hex[3] = "\x61\x62\x63\x64";
static char c_hex[3] = "\x61\x62";
static char d_hex[3] = "\x61";

static char a_oct[3] = "\141\142\143";
static char b_oct[3] = "\141\142\143\144";
static char c_oct[3] = "\141\142";
static char d_oct[3] = "\141";
/*
 * check-name: Character escape sequences
 *
 * check-error-start
escapes.c:3:34: warning: hex escape sequence out of range
escapes.c:3:44: warning: hex escape sequence out of range
escapes.c:4:18: warning: hex escape sequence out of range
escapes.c:6:24: warning: unknown escape sequence: '\c'
escapes.c:6:30: warning: multi-character character constant
escapes.c:6:39: warning: multi-character character constant
escapes.c:6:47: warning: hex escape sequence out of range
escapes.c:6:47: warning: multi-character character constant
escapes.c:9:24: warning: too long initializer-string for array of char
escapes.c:14:24: warning: too long initializer-string for array of char
 * check-error-end
 */