File: n_13_13.c

package info (click to toggle)
mcpp 2.7.2-5.2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 9,236 kB
  • sloc: ansic: 35,246; sh: 9,241; makefile: 116; cpp: 84; exp: 18
file content (39 lines) | stat: -rw-r--r-- 922 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* n_13_13.c:   #if expression with macros. */

#include    "defs.h"
#define ZERO_TOKEN
#define MACRO_0         0
#define MACRO_1         1
#define and             &&
#define or              ||
#define not_eq          !=
#define bitor           |

main( void)
{
    fputs( "started\n", stderr);

/* 13.13:   With macros expanding to operators. */
#if     (1 bitor 2) == 3 and 4 not_eq 5 or 0
    /* #if (1 | 2) == 3 && 4 != 5 || 0  */
#else
    fputs(
    "Bad evaluation of macros expanding to operators in #if expression.\n"
            , stderr);
    exit( 1);
#endif

/* 13.14:   With macros expanding to 0 token, nonsence but legal.   */
#if     ZERO_TOKEN MACRO_1 ZERO_TOKEN > ZERO_TOKEN MACRO_0 ZERO_TOKEN
    /* #if 1 > 0    */
#else
    fputs(
    "Bad evaluation of macros expanding to 0 token in #if expression.\n"
            , stderr);
    exit( 1);
#endif

    fputs( "success\n", stderr);
    return  0;
}