aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/14 configure file/prog6.c
blob: 57f55860515c90483bf9c2410cdd4e4bc77d2d3e (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <string.h>
#include <config6.h>

int main(void) {
    return strcmp(MESSAGE1, "foo")
        || strcmp(MESSAGE2, "@var1@")
        || strcmp(MESSAGE3, "\\foo")
        || strcmp(MESSAGE4, "\\@var1@")
        || strcmp(MESSAGE5, "@var1bar")
        || strcmp(MESSAGE6, "\\ @ @ \\@ \\@");
}