1 /* $NetBSD: queries_schar.c,v 1.1 2023/07/03 15:29:42 rillig Exp $ */ 2 # 3 "queries_schar.c" 3 4 /* 5 * Tests for queries that are specific to platforms where 'char' has the same 6 * representation as 'signed char'. 7 * 8 * See also: 9 * queries.c platform-independent tests 10 * queries_uchar.c for platforms where 'char' is unsigned 11 */ 12 13 /* lint1-only-if: schar */ 14 /* lint1-extra-flags: -q 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 -X 351 */ 15 16 int 17 Q14(char c) 18 { 19 /* expect+2: comparison '==' of 'char' with plain integer 92 [Q14] */ 20 /* expect+1: comparison '==' of 'char' with plain integer 0 [Q14] */ 21 if (c == 'c' || c == L'w' || c == 92 || c == 0) 22 return 1; 23 return 5; 24 } 25 26 /* 27 * Since queries do not affect the exit status, force a warning to make this 28 * test conform to the general expectation that a test that produces output 29 * exits non-successfully. 30 */ 31 /* expect+1: warning: static variable 'unused' unused [226] */ 32 static int unused; 33