diff options
| author | Michael Stefaniuc <mstefani@redhat.com> | 2007-06-05 10:02:55 +0200 |
|---|---|---|
| committer | Josh Triplett <josh@freedesktop.org> | 2007-06-09 00:20:06 -0700 |
| commit | 7a822d1021c90e5add3d4e63a527bd553e108c5e (patch) | |
| tree | df5b6c60d2058f34972c24810cd47c7fe88628da /validation | |
| parent | 16b5625dc382640b720a9f067ee0af92262c0d02 (diff) | |
| download | sparse-dev-7a822d1021c90e5add3d4e63a527bd553e108c5e.tar.gz | |
'\?' is a valid escape character defined by ANSI C. Its value is '?'.
Signed-off-by: Michael Stefaniuc <mstefani@redhat.com>
Diffstat (limited to 'validation')
| -rw-r--r-- | validation/escapes.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/validation/escapes.c b/validation/escapes.c new file mode 100644 index 00000000..2d7d2788 --- /dev/null +++ b/validation/escapes.c @@ -0,0 +1,3 @@ +int e[] = { '\'', '\"', '\?', '\\', + '\a', '\b', '\f', '\n', '\r', '\t', '\v', }; +char *s = "\'\"\?\\ \a\b\f\n\r\t\v"; |
