mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-10 17:36:21 +00:00
17 lines
318 B
Plaintext
17 lines
318 B
Plaintext
/* Test case-insensitive directives. */
|
|
|
|
#include <stdio.h>
|
|
|
|
# SuiTe The Suite
|
|
|
|
# tCaSe The Test Case
|
|
|
|
# teSt the_test
|
|
int nc;
|
|
const char msg[] = "\n\n Hello, world!\n";
|
|
|
|
nc = printf("%s", msg);
|
|
fail_unless(nc == (sizeof msg
|
|
- 1) /* for terminating NUL. */
|
|
);
|