aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/032.sh
blob: b5812dd925147cd8e2b4efdccab3c09110934950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
cat <<'EOF' > expected
97 48
92 39
10
EOF
test_diff <<'EOF'
int printf();

int main() {
    printf("%d %d\n", 'a', '0');
    printf("%d %d\n", '\\', '\'');
    printf("%d\n", '\n');
    return 0;
}
EOF