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

  1. add_pointer_to_linked_list(void * pointer_to_data)
  2.     {
  3.     struct s_link *new_link;
  4.     new_link = malloc(sizeof(struct s_link));
  5.     new_link->pointer_to_data = pointer_to_data;
  6.     ...
  7.     }
  8.  
  9.