permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / arraysz.c
1 typedef struct signature {
2 const char *sig; /* String to look for */
3 unsigned long ofs; /* offset from BIOS base address */
4 unsigned len; /* length of string */
5 } Signature;
6
7 static const Signature signatures[] = {
8 {"SSTBIOS", 0x0000d, 7} /* "SSTBIOS" @ offset 0x0000d */
9 };
10 #define NUM_SIGNATURES (sizeof(signatures)/sizeof(Signature))