Blame checkmk/test/non_word_chars/in

Packit 0b5880
/* Non-word characters */
Packit 0b5880
Packit 0b5880
#include <stdio.h>
Packit 0b5880
Packit 0b5880
# suite The Suite (of Test Cases/\TCases)
Packit 0b5880
Packit 0b5880
# tcase The "Test Case"
Packit 0b5880
Packit 0b5880
# test  the_test
Packit 0b5880
    int nc;
Packit 0b5880
    const char msg[] = "\n\n    Hello, world!\n";
Packit 0b5880
Packit 0b5880
    nc = printf("%s", msg);
Packit 0b5880
    fail_unless(nc == (sizeof msg
Packit 0b5880
                                  - 1) /* for terminating NUL. */
Packit 0b5880
    );