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