Home | History | Annotate | Download | only in test_headers
      1 // Copyright 2017 syzkaller project authors. All rights reserved.
      2 // Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
      3 
      4 #ifndef __TEST_HEADER_A
      5 #define __TEST_HEADER_A
      6 
      7 #define RANDOM_MACRO_1 1
      8 #define RANDOM_MACRO_2 2
      9 
     10 struct A {
     11 	struct B *B_item;
     12 	const char *char_ptr;
     13 	unsigned int an_unsigned_int;
     14 	/*
     15 	 * Some comments
     16 	 */
     17 	bool a_bool;
     18 	bool another_bool;
     19 	some_type var;
     20 };
     21 
     22 #endif /* __TEST_HEADER_A */
     23