home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_10 / 1010065a < prev    next >
Text File  |  1992-09-01  |  347b  |  18 lines

  1. int function_expecting_pointer_to_int( int *p_input_value);
  2.  
  3. void calling_function(void)
  4.     {
  5.     int i;
  6.     function_expecting_pointer_to_int(&i);
  7.     }
  8.  
  9. int function_expecting_pointer_to_int( int *p_xinput_value)
  10.     {
  11.     int local_variable;
  12.     /* Do something with it */
  13.     local_variable = *p_input_value;
  14.     ...
  15.     }
  16.  
  17.  
  18.