File: n_std.c

package info (click to toggle)
mcpp 2.7.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 8,024 kB
  • ctags: 29,151
  • sloc: ansic: 35,191; sh: 9,231; makefile: 176; cpp: 84; exp: 18
file content (957 lines) | stat: -rw-r--r-- 24,522 bytes parent folder | download | duplicates (8)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
/*
 *      n_std.c
 *
 * 1998/08      made public                                     kmatsui
 * 2002/08      revised not to conflict with C99 Standard       kmatsui
 * 2004/10      added a few testcases for macro expansion       kmatsui
 *
 *   Samples to test Standard C preprocessing.
 *   This is a strictly-comforming program.
 *   Any Standard-comforming translator must translate successfully this
 * program.  The generated execution program must be executed with the message
 * <End of "n_std.c"> on stdout and no other messages on stderr.
 *   A translator must process also #error directive properly, which is not
 * included here because the directive might cause translator to terminate.
 */


#include    "defs.h"

#define ZERO_TOKEN
#define TWO_ARGS        a,b
#define MACRO_0         0
#define MACRO_1         1
#define sub( x, y)      (x - y)
#define str( a)         # a
#define xstr( a)        str( a)
#define glue( a, b)     a ## b
#define xglue( a, b)    glue( a, b)

void    n_1( void);
void    n_2( void);
void    n_3( void);
void    n_4( void);
void    n_5( void);
void    n_6( void);
void    n_7( void);
void    n_9( void);
void    n_10( void);
void    n_11( void);
void    n_12( void);
void    n_13( void);
void    n_13_5( void);
void    n_13_7( void);
void    n_13_8( void);
void    n_13_13( void);
void    n_15( void);
void    n_18( void);
void    n_19( void);
void    n_20( void);
void    n_21( void);
void    n_22( void);
void    n_23( void);
void    n_24( void);
void    n_25( void);
void    n_26( void);
void    n_27( void);
void    n_28( void);
void    n_29( void);
void    n_30( void);
void    n_32( void);
void    n_37( void);

int main( void)
{
    n_1();
    n_2();
    n_3();
    n_4();
    n_5();
    n_6();
    n_7();
    n_9();
    n_10();
    n_11();
    n_12();
    n_13();
    n_13_5();
    n_13_7();
    n_13_8();
    n_13_13();
    n_15();
    n_18();
    n_19();
    n_20();
    n_21();
    n_22();
    n_23();
    n_24();
    n_25();
    n_26();
    n_27();
    n_28();
    n_29();
    n_30();
    n_32();
    n_37();
    puts( "<End of \"n_std.c\">");
    return  0;
}

char    quasi_trigraph[] = { '?', '?', ' ', '?', '?', '?', ' '
            , '?', '?', '%', ' ', '?', '?', '^', ' ', '?', '#', '\0' };

void    n_1( void)
/*      Conversion of trigraph sequences.   */
{
    int     ab = 1, cd = 2;

/* 1.1: The following 9 sequences are valid trigraph sequences. */
    assert( strcmp( "??( ??) ??/??/ ??' ??< ??> ??! ??- ??="
            ,"[ ] \\ ^ { } | ~ #") == 0);

/* 1.2: In directive line.  */
??= define  OR( a, b)   a ??! b
    assert( OR( ab, cd) == 3);

/* 1.3: Any sequence other than above 9 is not a trigraph sequence. */
    assert( strcmp( "?? ??? ??% ??^ ???=", quasi_trigraph) == 0);
}

void    n_2( void)
/*      Line splicing by <backslash><newline> sequence. */
{
    int     ab = 1, cd = 2, ef = 3, abcde = 5;

/* 2.1: In a #define directive line, between the parameter list and the
        replacement text.   */
#define FUNC( a, b, c)  \
        a + b + c
    assert( FUNC( ab, cd, ef) == 6);

/* 2.2: In a #define directive line, among the parameter list and among the
        replacement text.   */
#undef  FUNC
#define FUNC( a, b  \
    , c)            \
    a + b           \
    + c
    assert (FUNC( ab, cd, ef) == 6);

/* 2.3: In a string literal.    */
    assert (strcmp( "abc\
de", "abcde") == 0);

/* 2.4: <backslash><newline> in midst of an identifier. */
    assert( abc\
de == 5);

/* 2.5: <backslash><newline> by trigraph.   */
    assert( abc??/
de == 5);
}

void    n_3( void)
/*      Handling of comment.    */
{
    int     abcd = 4;

/* 3.1: A comment is converted to one space.    */
    assert( strcmp( str( abc/* comment */de), "abc de") == 0);

/* 3.2: // is not a comment of C.   */
/*    assert( strcmp( str( //), "//") == 0);    */

/* 3.3: Comment is parsed prior to the parsing of preprocessing directive.  */
#if     0
    "nonsence"; /*
#else
    still in
    comment     */
#else
#define MACRO_abcd  /*
    in comment
    */  abcd
#endif
    assert( MACRO_abcd == 4);
}

void    n_4( void)
/* Special tokens.  */
{
/* 4.1: Digraph spellings in directive line.    */
%: define  stringize( a)    %: a

    assert( strcmp( stringize( abc), "abc") == 0);

/* 4.2: Digraph spellings are retained in stringization.    */
    assert( strcmp( stringize( <:), "<" ":") == 0);
}

void    n_5( void)
/*      Spaces or tabs are allowed at any place in pp-directive line,
        including between the top of a pp-directive line and '#', and between
        the '#' and the directive. */
{
    int     abcde = 5;
/*  |**|[TAB]# |**|[TAB]define |**| MACRO_abcde[TAB]|**| abcde |**| */
/**/    # /**/  define /**/ MACRO_abcde /**/ abcde /**/
    assert( MACRO_abcde == 5);
}

/* 6.1: Header-name quoted by " and " as well as by < and > can include
        standard headers.   */
/* Note: Standard headers can be included any times.    */
#include    "ctype.h"
#include    <ctype.h>

void    n_6( void)
/*      #include directive. */
{
    int     abc = 3;

    assert( isalpha( 'a'));

/* 6.2: Macro is allowed in #include line.  */
#define HEADER  "header.h"
#include    HEADER
    assert( MACRO_abc == 3);

/* 6.3: With macro nonsence but legal.  */
#undef  MACRO_abc
#include    ZERO_TOKEN HEADER ZERO_TOKEN
    assert( MACRO_abc == 3);
}

void    n_7( void)
/*      #line directive.    */
{
/* 7.1: Line number and filename.   */
#line   1234    "cpp"
    assert( __LINE__ == 1234);
    assert( strcmp( __FILE__, "cpp") == 0);

/* 7.2: Filename argument is optional.  */
#line   2345
    assert( __LINE__ == 2345);
    assert( strcmp( __FILE__, "cpp") == 0);

/* 7.3: Argument with macro.    */
#define LINE_AND_FILENAME   1234 "n_7.c"
#line   LINE_AND_FILENAME
    assert( __LINE__ == 1234);
    assert( strcmp( __FILE__, "n_7.c") == 0);
}

/* Restore to correct line number and filename. */
#line   248 "n_std.c"

void    n_9( void)
/*      #pragma directive.  */
{
/* 9.1: Any #pragma directive should be processed or ignored, should not
        be diagnosed as an error.   */
#pragma once
#pragma who knows ?
}

void    n_10( void)
/*      #if, #elif, #else and #endif pp-directive.  */
{
/* 10.1:    */
/* Note: an undefined identifier in #if expression is replaced to 0.    */
#if     a
    assert( a);
#elif   MACRO_0
    assert( MACRO_0);
#elif   MACRO_1         /* Valid block  */
    assert( MACRO_1);
#else
    assert( 0);
#endif

/* 10.2:    Comments must be processed even if in skipped #if block.    */
/* At least tokenization of string literal and character constant is necessary
        to process comments, e.g. /* is not a comment mark in string literal.
 */
#ifdef  UNDEFINED
    /* Comment  */
    "in literal /* is not a comment"
#endif
}

void    n_11( void)
/*      Operator "defined" in #if or #elif directive.   */
{
    int     abc = 1, a = 0;

/* 11.1:    */
#undef  MACRO_abc
#define MACRO_abc   abc
#if     defined a
    assert( a);
#else
    assert( MACRO_abc);
#endif
#if     defined (MACRO_abc)
    assert( MACRO_abc);
#else
    assert( a);
#endif

/* 11.2:    "defined" is an unary operator whose result is 1 or 0.  */
#if     defined MACRO_0 * 3 != 3
    fputs( "Bad handling of defined operator.\n", stderr);
#endif
#if     (!defined ZERO_TOKEN != 0) || (-defined ZERO_TOKEN != -1)
    fputs( "Bad grouping of defined, -, ! in #if expression.\n", stderr);
#endif
}

#include    <limits.h>

void    n_12( void)
/*      Integer preprocessing number token and type of #if expression.  */
{
/* 12.1:    */
#if     LONG_MAX <= LONG_MIN
    fputs( "Bad evaluation of long.\n", stderr);
#endif
#if     LONG_MAX <= 1073741823  /* 0x3FFFFFFF   */
    fputs( "Bad evaluation of long.\n", stderr);
#endif

/* 12.2:    */
#if     ULONG_MAX / 2 < LONG_MAX
    fputs( "Bad evaluation of unsigned long.\n", stderr);
#endif

/* 12.3:    Octal number.   */
#if     0177777 != 65535
    fputs( "Bad evaluation of octal number.\n", stderr);
#endif

/* 12.4:    Hexadecimal number. */
#if     0Xffff != 65535 || 0XFfFf != 65535
    fputs( "Bad evaluation of hexadecimal number.\n", stderr);
#endif

/* 12.5:    Suffix 'L' or 'l'.  */
#if     0L != 0 || 0l != 0
    fputs( "Bad evaluation of 'L' suffix.\n", stderr);
#endif

/* 12.6:    Suffix 'U' or 'u'.  */
#if     1U != 1 || 1u != 1
    fputs( "Bad evaluation of 'U' suffix.\n", stderr);
#endif

/* 12.7:    Negative integer.   */
#if     0 <= -1
    fputs( "Bad evaluation of negative number.\n", stderr);
#endif
}

void    n_13( void)
/*      evaluation of #if expressions.  */
/* Valid operators are (precedence in this order) :
    defined, (unary)+, (unary)-, ~, !,
    *, /, %,
    +, -,
    <<, >>,
    <, >, <=, >=,
    ==, !=,
    &,
    ^,
    |,
    &&,
    ||,
    ? :
 */
{
/* 13.1:    Bit shift.  */
#if     1 << 2 != 4 || 8 >> 1 != 4
    fputs( "Bad arithmetic of <<, >> operators.\n", stderr);
#endif

/* 13.2:    Bitwise operators.  */
#if     (3 ^ 5) != 6 || (3 | 5) != 7 || (3 & 5) != 1
    fputs( "Bad arithmetic of ^, |, & operators.\n", stderr);
#endif

/* 13.3:    Result of ||, && operators is either of 1 or 0. */
#if     (2 || 3) != 1 || (2 && 3) != 1 || (0 || 4) != 1 || (0 && 5) != 0
    fputs( "Bad arithmetic of ||, && operators.\n", stderr);
#endif

/* 13.4:    ?, : operator.  */
#if     (0 ? 1 : 2) != 2
    fputs( "Bad arithmetic of ?: operator.\n", stderr);
#endif
}

void    n_13_5( void)
/*      Arithmetic conversion in #if expressions.   */
{
/* 13.5:    The usual arithmetic conversion is not performed on bit shift.  */
#if     -1 << 3U > 0
    fputs( "Bad conversion of bit shift operands.\n", stderr);
#endif

/* 13.6:    Usual arithmetic conversions.   */
#if     -1 <= 0U        /* -1 is converted to unsigned long.    */
    fputs( "Bad arithmetic conversion.\n", stderr);
#endif

#if     -1 * 1U <= 0
    fputs( "Bad arithmetic conversion.\n", stderr);
#endif

/* Second and third operands of conditional operator are converted to the
        same type, thus -1 is converted to unsigned long.    */
#if     (1 ? -1 : 0U) <= 0
    fputs( "Bad arithmetic conversion.\n", stderr);
#endif
}

void    n_13_7( void)
/*      Short-circuit evaluation of #if expression. */
{
/* 13.7:    10/0 or 10/MACRO_0 are never evaluated, "divide by zero" error
        cannot occur.   */

#if     0 && 10 / 0
#endif
#if     not_defined && 10 / not_defined
#endif
#if     MACRO_0 && 10 / MACRO_0 > 1
#endif
#if     MACRO_0 ? 10 / MACRO_0 : 0
#endif
#if     MACRO_0 == 0 || 10 / MACRO_0 > 1        /* Valid block  */
#else
#endif
}

void    n_13_8( void)
/*      Grouping of sub-expressions in #if expression.  */
{
/* 13.8:    Unary operators are grouped from right to left. */
#if     (- -1 != 1) || (!!9 != 1) || (-!+!9 != -1) || (~~1 != 1)
    fputs( "Bad grouping of -, +, !, ~ in #if expression.\n", stderr);
#endif

/* 13.9:    ?: operators are grouped from right to left.    */
#if     (1 ? 2 ? 3 ? 3 : 2 : 1 : 0) != 3
    fputs( "Bad grouping of ? : in #if expression.\n", stderr);
#endif

/* 13.10:   Other operators are grouped from left to right. */
#if     (15 >> 2 >> 1 != 1) || (3 << 2 << 1 != 24)
    fputs( "Bad grouping of >>, << in #if expression.\n", stderr);
#endif

/* 13.11:   Test of precedence. */
#if     3*10/2 >> !0*2 >> !+!-9 != 1
    fputs( "Bad grouping of -, +, !, *, /, >> in #if expression.\n", stderr);
#endif

/* 13.12:   Overall test.  Grouped as:
        ((((((+1 - -1 - ~~1 - -!0) & 6) | ((8 % 9) ^ (-2 * -2))) >> 1) == 7)
        ? 7 : 0) != 7
    evaluated to FALSE.
 */
#if     (((+1- -1-~~1- -!0&6|8%9^-2*-2)>>1)==7?7:0)!=7
    fputs( "Bad arithmetic of #if expression.\n", stderr);
#endif
}

void    n_13_13( void)
/*      #if expression with macros. */
{
#define and             &&
#define or              ||
#define not_eq          !=
#define bitor           |

/* 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);
#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);
#endif
}

void    n_15( void)
/*      #ifdef, #ifndef directives. */
{

/* 15.1:    #ifdef directive.   */
#ifdef  MACRO_1         /* Valid block  */
    assert( MACRO_1);
#else
    assert( MACRO_0);
#endif

/* 15.2:    #ifndef directive.  */
#ifndef MACRO_1
    assert( MACRO_0);
#else               /* Valid block  */
    assert( MACRO_1);
#endif
}

void    n_18( void)
/*      #define directive.  */
/* Excerpts from ISO C 6.8.3 "Examples".    */
#define OBJ_LIKE        (1-1)
#define FTN_LIKE(a)     ( a )
{
    int     c = 3;

/* 18.1:    Definition of an object-like macro. */
    assert( OBJ_LIKE == 0);
#ifndef ZERO_TOKEN
    fputs( "Can't define macro to 0-token.\n", stderr);
#endif

/* 18.2:    Definition of a function-like macro.    */
    assert( FTN_LIKE( c) == 3);

/* 18.3:    Spelling in string identical to parameter is not a parameter.   */
#define STR( n1, n2)    "n1:n2"
    assert( strcmp( STR( 1, 2), "n1:n2") == 0);
}

void    n_19( void)
/*      Valid re-definitions of macros. */
{
    int     c = 1;

/* 19.1:    */
#define OBJ_LIKE    /* white space */  (1-1) /* other */

/* 19.2:    */
#define FTN_LIKE( a     )(  /* note the white space */  \
                        a  /* other stuff on this line
                           */ )
    assert( FTN_LIKE( c) == 1);
}

void    n_20( void)
/*      Macro lexically identical to keyword. */
{
/* 20.1:    */
#define float   double
    float   fl;
    assert( sizeof fl == sizeof (double));
}

void    n_21( void)
/*      Tokenization (No preprocessing tokens are merged implicitly).   */
{
    int     a = 1, x = 2, y = -3;

/* 21.1:    */
#define MINUS   -
    assert( -MINUS-a == -1);

/* 21.2:    */
#undef  sub
#define sub( a, b)  a-b     /* '(a)-(b)' is better  */
#define Y   -y              /* '(-y)' is better     */
/*  x- -y   */
    assert( sub( x, Y) == -1);
}

void    n_22( void)
/*      Tokenization of preprocessing number.   */
{
#define EXP         1

/* 22.1:    12E+EXP is a preprocessing number, EXP is not expanded. */
    assert( strcmp( xstr( 12E+EXP), "12E+EXP") == 0);

/* 22.2:    .2e-EXP is also a preprocessing number. */
    assert( strcmp( xstr( .2e-EXP), ".2e-EXP") == 0);

/* 22.3:    + or - is allowed only following E or e, 12+EXP is not a
        preprocessing number.   */
    assert( strcmp( xstr( 12+EXP), "12+1") == 0);
}

void    n_23( void)
/*      ## operator in macro definition.    */
{
    int     xy = 1;

/* 23.1:    */
    assert( glue( x, y) == 1);

/* 23.2:    Generate a preprocessing number.    */
#undef  EXP
#define EXP     2
    assert( xglue( .12e+, EXP) == 12.0);
}

void    n_24( void)
/*      # operator in macro definition. */
{
/* 24.1:    */
    assert( strcmp( str( a+b), "a+b") == 0);

/* 24.2:    White spaces between tokens of operand are converted to one space.
 */
    assert( strcmp( str(    ab  /* comment */   +
        cd  ), "ab + cd") == 0);

/* 24.3:    \ is inserted before \ and " in or surrounding literals and no
        other character is inserted to anywhere.    */
    assert( strcmp( str( '"' + "' \""), "'\"' + \"' \\\"\"") == 0);

/* 24.4:    Line splicing by <backslash><newline> is done prior to token
        parsing.   */
    assert( strcmp( str( "ab\
c"), "\"abc\"") == 0);

/* 24.5:    Token separator inserted by macro expansion should be removed.
        (Meanwhile, tokens should not be merged.  See 21.2.)    */
#define f(a)        a
    assert( strcmp( xstr( x-f(y)), "x-y") == 0);
}

void    n_25( void)
/*      Macro arguments are pre-expanded (unless the argument is an
        operand of # or ## operator) separately, that is, are macro-replaced
        completely prior to rescanning. */
{
    int     a = 1, b = 2, abc = 3, MACRO_0MACRO_1 = 2;

#undef sub
#define sub( x, y)      (x - y)

/* 25.1:    "TWO_ARGS" is read as one argument to "sub", then expanded to
        "a,b", then "x" is substituted by "a,b".    */
    assert( sub( TWO_ARGS, 1) == 1);

/* 25.2:    An argument pre-expanded to 0-token.    */
    assert( sub( ZERO_TOKEN, a) == -1);

/* 25.3:    "glue( a, b)" is pre-expanded.  */
    assert( xglue( glue( a, b), c) == 3);

/* 25.4:    Operands of ## operator are not pre-expanded.   */
    assert( glue( MACRO_0, MACRO_1) == 2);

/* 25.5:    Operand of # operator is not pre-expanded.  */
    assert( strcmp( str( ZERO_TOKEN), "ZERO_TOKEN") == 0);
}

#undef  f

#ifdef  void
int     f( a)
    int     a;
{
    return  a;
}

int     g( a)
    int     a;
{
    return  a * 2;
}
#else
int     f( int a)
{
    return  a;
}

int     g( int a)
{
    return  a * 2;
}
#endif

void    n_26( void)
/*      The name once replaced is not furthur replaced. */
{
    int     x = 1;
    int     AB = 1;
    int     Z[1];
    Z[0] = 1;

/* 26.1:    Directly recursive macro definition.    */
/*  Z[0];   */
#define Z   Z[0]
    assert( Z == 1);

/* 26.2:    Intermediately recursive macro definition.  */
/*  AB; */
#define AB  BA
#define BA  AB
    assert( AB == 1);

/* 26.3:    Directly recursive function-like macro definition.  */
/*  x + f(x);   */
#define f(a)    a + f(a)
    assert( f( x) == 2);

/* 26.4:    Intermediately recursive function-like macro definition.    */
/*  x + x + g( x);  */
#define g(a)    a + h( a)
#define h(a)    a + g( a)
    assert( g( x) == 4);

/* 26.5:    Rescanning encounters the non-replaced macro name.  */
/*  Z[0] + f( Z[0]);    */
    assert( f( Z) == 2);
}

void    n_27( void)
/*      Rescanning of a macro raplace any macro call in the replacement
        text after substitution of parameters by pre-expanded-arguments.  This
        re-examination may involve the succeding sequences from the source
        file (what a queer thing!). */
{
    int     a = 1, b = 2, c, m = 1, n = 2;

/* 27.1:    Cascaded use of object-like macros. */
#define NEST8   NEST7 + 8
#define NEST7   NEST6 + 7
#define NEST6   NEST5 + 6
#define NEST5   NEST4 + 5
#define NEST4   NEST3 + 4
#define NEST3   NEST2 + 3
#define NEST2   NEST1 + 2
#define NEST1   1
    assert( NEST8 == 36);

/* 27.2:    Cascaded use of function-like macros.   */
#define FUNC4( a, b)    FUNC3( a, b) + NEST4
#define FUNC3( a, b)    FUNC2( a, b) + NEST3
#define FUNC2( a, b)    FUNC1( a, b) + NEST2
#define FUNC1( a, b)    (a) + (b)
    assert( FUNC4( NEST1, NEST2) == 23);

/* 27.3:    An identifier generated by ## operator is subject to expansion. */
    assert( glue( MACRO_, 1) == 1);

#define head            sub(
#define math( op, a, b) op( (a), (b))

/* 27.4:    'sub' as an argument of math() is not pre-expanded, since '(' is
        missing.    */
    assert( math( sub, a, b) == -1);

/* 27.5:    Queer thing.    */
    c = head a,b );
    assert( c == -1);

/* 27.6:    Recursive macro (the 2nd 'm' is expanded to 'n' since it is in
        source file).   */
#define m       n
#define n( a)   a 
    assert( m( m) == 2);
}

void    n_28( void)
/*      __FILE__, __LINE__, __DATE__, __TIME__, __STDC__ and
        __STDC_VERSION are predefined.  */
{
    char *  date = __DATE__;

/* 28.1:    */
    assert( strcmp( __FILE__, "n_std.c") == 0);

/* 28.2:    */
    assert( __LINE__ == 779);

/* 28.3:    */
    assert( strlen( __DATE__) == 11);
    assert( date[ 4] != '0');

/* 28.4:    */
    assert( strlen( __TIME__) == 8);

/* 28.5:    */
    assert( __STDC__);

/* 28.6:    */
    assert( __STDC_VERSION__ >= 199409L);

/* 28.7:    */
#include    "line.h"
}

void    n_29( void)
/*      #undef directive.   */
{
    int     DEFINED = 1;

/* 29.1:    Undefined macro is not a macro. */
#define DEFINED
#undef  DEFINED
    assert( DEFINED == 1);

/* 29.2:    Undefining undefined name is not an error.  */
#undef  UNDEFINED
}

void    n_30( void)
/*      Macro calls.    */
/*  Note:   Comma separate the arguments of function-like macro call,
        but comma between matching inner parenthesis doesn't.  This feature
        is tested on so many places in this suite especially on *.c samples
        which use assert() macro, that no separete item to test this feature
        is provided.    */
{
#undef  FUNC
#define FUNC( a, b, c)      a + b + c

    int     a = 1, b = 2, c = 3;

/* 30.1:    A macro may cross lines.    */
    assert
    (
        FUNC
        (
            a,
            b,
            c
        )
        == 6
    );
}

void    n_32( void)
/*      Escape sequence in character constant in #if expression.    */
{
/* 32.1:    Character octal escape sequence.    */
#if     '\123' != 83
    fputs( "Bad evaluation of octal escape sequence.\n", stderr);
#endif

/* 32.2:    Character hexadecimal escape sequence.  */
#if     '\x1b' != '\033'
    fputs( "Bad evaluation of hexadecimal escape sequence.\n", stderr);
#endif
}

void    n_37( void)
/* Translation limits.  */
{
#define     MACRO_8     8

/* 37.1:    Number of parameters in macro: at least 31. */
#define glue31(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E)   \
    a##b##c##d##e##f##g##h##i##j##k##l##m##n##o##p##q##r##s##t##u##v##w##x##y##z##A##B##C##D##E

    int     ABCDEFGHIJKLMNOPQRSTUVWXYZabcde = 31;
    int     ABCDEFGHIJKLMNOPQRSTUVWXYZabcd_ = 30;
    int     nest = 0;

/* 37.2:    Number of arguments in macro call: at least 31. */
    assert(
        glue31( A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R
            , S, T, U, V, W, X, Y, Z, a, b, c, d, e)
        == 31);

/* 37.3:    Significant initial characters in an internal identifier or a
        macro name: at least 31.  */
    assert( ABCDEFGHIJKLMNOPQRSTUVWXYZabcd_ == 30);

/* 37.4:    Nested conditional inclusion: at least 8 levels.    */
    nest = 0;
#ifdef  A
#else
#   ifdef   B
#   else
#       ifdef   C
#       else
#           ifdef   D
#           else
#               ifdef   E
#               else
#                   ifdef   F
#                   else
#                       ifdef   G
#                       else
#                           ifdef   H
#                           else
                                nest = 8;
#                           endif
#                       endif
#                   endif
#               endif
#           endif
#       endif
#   endif
#endif
    assert( nest == 8);

/* 37.5:    Nested source file inclusion: at least 8 levels.    */
    nest = 0;
#include    "nest1.h"
    assert( nest == 8);

/* 37.6:    Parenthesized expression: at least 32 levels.   */
#if     0 + (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 + 0))))))))))   \
        )))))))))))))))))))))) == 0
    nest = 32;
#endif
    assert( nest == 32);

/* 37.7:    Characters in a string (after concatenation): at least 509. */
    {
        char *  extremely_long_string =
"123456789012345678901234567890123456789012345678901234567890123456789\
0123456789012345678901234567890123456789012345678901234567890123456789\
0123456789012345678901234567890123456789012345678901234567890123456789\
0123456789012345678901234567890123456789012345678901234567890123456789\
0123456789012345678901234567890123456789012345678901234567890123456789\
0123456789012345678901234567890123456789012345678901234567890123456789\
0123456789012345678901234567890123456789012345678901234567890123456789\
012345678901234567"
        ;
        assert( strlen( extremely_long_string) == 507);
    }

/* 37.8:    Characters in a logical source line: at least 509.  */
    {
    int a123456789012345678901234567890 = 123450;   \
    int b123456789012345678901234567890 = 123451;   \
    int c123456789012345678901234567890 = 123452;   \
    int d123456789012345678901234567890 = 123453;   \
    int e123456789012345678901234567890 = 123454;   \
    int f123456789012345678901234567890 = 123455;   \
    int A123456789012345678901234567890 = 123456;   \
    int B123456789012345678901234567890 = 123457;   \
    int C123456789012345678901234567890 = 123458;   \
    int D1234567890123456789012 = 123459;
        assert( a123456789012345678901234567890 == 123450
            && D1234567890123456789012 == 123459);
    }

/* 37.9:    Macro definitions: at least 1024.   */
#undef  AB
#undef  BA
#undef  OR

#include    "m1024.h"
    assert( ZX);
}