aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/184 escape and unicode/main.c
blob: 0bcde169c7b7dc7ed0ddf0b68a9b5f24b471bdc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <string.h>

const char* does_it_work();

int a_fun();

int main() {
    if(strcmp(does_it_work(), "yes it does") != 0) {
        return -a_fun();
    }
    return 0;
}