Add tests to verify that h2ph output compiles and is warning free
[p5sagit/p5-mst-13.2.git] / t / lib / h2ph.h
1 /* 
2  * Test header file for h2ph
3  * 
4  * Try to test as many constructs as possible
5  * For example, the multi-line comment :)
6  */
7
8 /* And here's a single line comment :) */
9
10 /* Test #define with no indenting, over multiple lines */
11 #define SQUARE(x) \
12 ((x)*(x))
13
14 /* Test #ifndef and parameter interpretation*/
15 #ifndef ERROR
16 #define ERROR(x) fprintf(stderr, "%s\n", x[2][3][0])
17 #endif /* ERROR */
18
19 #ifndef _H2PH_H_
20 #define _H2PH_H_
21
22 /* #ident - doesn't really do anything, but I think it always gets included anyway */
23 #ident "$Revision h2ph.h,v 1.0 98/05/04 20:42:14 billy $"
24
25 /* Test #undef */
26 #undef MAX
27 #define MAX(a,b) ((a) > (b) ? (a) : (b))
28
29 /* Test #ifdef */
30 #ifdef __SOME_UNIMPORTANT_PROPERTY
31 #define MIN(a,b) ((a) < (b) ? (a) : (b))
32 #endif /* __SOME_UNIMPORTANT_PROPERTY */
33
34 /* 
35  * Test #if, #elif, #else, #endif, #warn and #error, and `!'
36  * Also test whitespace between the `#' and the command
37  */
38 #if !(defined __SOMETHING_MORE_IMPORTANT)
39 #    warn Be careful...
40 #elif !(defined __SOMETHING_REALLY_REALLY_IMPORTANT)
41 #    error "Nup, can't go on" /* ' /* stupid font-lock-mode */
42 #else /* defined __SOMETHING_MORE_IMPORTANT && defined __SOMETHING_REALLY_REALLY_IMPORTANT */
43 #    define EVERYTHING_IS_OK
44 #endif
45
46 /* Test && and || */
47 #undef WHATEVER
48 #if (!((defined __SOMETHING_TRIVIAL && defined __SOMETHING_LESS_SO)) \
49      || defined __SOMETHING_OVERPOWERING)
50 #    define WHATEVER 6
51 #elif !(defined __SOMETHING_TRIVIAL) /* defined __SOMETHING_LESS_SO */
52 #    define WHATEVER 7
53 #elif !(defined __SOMETHING_LESS_SO) /* defined __SOMETHING_TRIVIAL */
54 #    define WHATEVER 8
55 #else /* defined __SOMETHING_TRIVIAL && defined __SOMETHING_LESS_SO */
56 #    define WHATEVER 1000
57 #endif
58
59 /* Test passing through the alien constructs (perlbug #34493) */
60 #ifdef __LANGUAGE_PASCAL__
61 function Tru64_Pascal(n: Integer): Integer;
62 #endif
63
64 /* 
65  * Test #include, #import and #include_next
66  * #include_next is difficult to test, it really depends on the actual
67  *  circumstances - for example, `#include_next <limits.h>' on a Linux system
68  *  with `use lib qw(/opt/perl5/lib/site_perl/i586-linux/linux);' or whatever
69  *  your equivalent is...
70  */
71 #if 0
72 #include <sys/socket.h>
73 #import "sys/ioctl.h"
74 #include_next <sys/fcntl.h>
75 #endif
76
77 /* typedefs should be ignored */
78 typedef struct a_struct {
79   int typedefs_should;
80   char be_ignored;
81   long as_well;
82 } a_typedef;
83
84 /* 
85  * however, typedefs of enums and just plain enums should end up being treated
86  * like a bunch of #defines...
87  */
88
89 typedef enum _days_of_week { sun, mon, tue, wed, thu, fri, sat, Sun=0, Mon,
90                              Tue, Wed, Thu, Fri, Sat } days_of_week;
91
92 /* 
93  * Some moderate flexing of tri-graph pre substitution.
94  */
95 ??=ifndef _SOMETHING_TRIGRAPHIC
96 ??=define _SOMETHING_TRIGRAPHIC
97 ??= define SOMETHING_ELSE_TRIGRAPHIC_0 "??!"          /* | ??!|  || */
98  ??=define SOMETHING_ELSE_TRIGRAPHIC_1 "??'"          /* | ??'|  ^| */
99 ??= define SOMETHING_ELSE_TRIGRAPHIC_2 "??("          /* | ??(|  [| */
100  ??= define SOMETHING_ELSE_TRIGRAPHIC_3 "??)"         /* | ??)|  ]| */
101 ??=define SOMETHING_ELSE_TRIGRAPHIC_4  "??-0"         /* | ??-|  ~| */
102         ??= define SOMETHING_ELSE_TRIGRAPHIC_5 "??/ " /* | ??/|  \| */
103 ??= define SOMETHING_ELSE_TRIGRAPHIC_6 "??<"          /* | ??<|  {| */
104 ??=define SOMETHING_ELSE_TRIGRAPHIC_7  "??="          /* | ??=|  #| */
105 ??= define SOMETHING_ELSE_TRIGRAPHIC_8 "??>"          /* | ??>|  }| */
106         ??=endif
107
108 // test C++-style comment
109
110 #if 1
111 typdef struct empty_struct {
112 } // trailing C++-style comment should not force continuation
113 #endif
114
115 /* comments (that look like string) inside enums... */
116
117 enum {
118    /* foo;
119      can't
120    */                        
121  };
122
123 enum flimflam {
124   flim,
125    /* foo;
126      can't
127    */
128   flam                      
129  } flamflim;
130
131 /* Handle multi-line quoted strings: */
132 __asm__ __volatile__("
133     this
134     produces
135     no
136     output
137 ");
138
139 #define multiline "multiline
140 string"
141
142 #endif /* _H2PH_H_ */