Home | History | Annotate | Download | only in input
      1 #ifndef FUNC_DECL_TWO_ARGS_H_
      2 #define FUNC_DECL_TWO_ARGS_H_
      3 
      4 #if defined(__cplusplus)
      5 extern "C" {
      6 #endif
      7 
      8 extern void test_char(int, char);
      9 
     10 extern void test_short(int, short);
     11 
     12 extern void test_int(int, int);
     13 
     14 extern void test_long(int, long);
     15 
     16 extern void test_long_long(int, long long);
     17 
     18 extern void test_unsigned_char(int, unsigned char);
     19 
     20 extern void test_unsigned_short(int, unsigned short);
     21 
     22 extern void test_unsigned_int(int, unsigned int);
     23 
     24 extern void test_unsigned_long(int, unsigned long);
     25 
     26 extern void test_unsigned_long_long(int, unsigned long long);
     27 
     28 extern void test_unsigned_float(int, float);
     29 
     30 extern void test_unsigned_double(int, double);
     31 
     32 extern void test_unsigned_long_double(int, long double);
     33 
     34 #if defined(__cplusplus)
     35 }  // extern "C"
     36 #endif
     37 
     38 #endif  // FUNC_DECL_TWO_ARGS_H_
     39