| | 1 | #charset "fake_mbcs_for_testing" |
| | 2 | |
| | 3 | /* |
| | 4 | * This is a test of using our fake testing multibyte character set. The |
| | 5 | * character set represents each upper-case letter as an at-sign ("@") |
| | 6 | * followed by the corresponding lower-case letter: so 'A' is written as |
| | 7 | * '@a', and so on. This exercises the multi-byte mapper without using a |
| | 8 | * true multi-byte character set, to make the test results easier to |
| | 9 | * interpret, and to facilitate testing on systems that are localized to |
| | 10 | * the US or Western Europe. |
| | 11 | */ |
| | 12 | main(args) |
| | 13 | { |
| | 14 | "@this @is @a @test @of @the @fake @multi-@byte @character @set. |
| | 15 | @each word in the preceding sentence should be capitalized, but |
| | 16 | only the first word of this sentence should be.\n"; |
| | 17 | } |