home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c163 / 3.ddi / SCRE_SOU.EXE / H4MOVE.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-22  |  349 b   |  13 lines

  1.  
  2. /* h4move.c   (c)Copyright Sequiter Software Inc., 1987-1990.  All rights reserved. */
  3.  
  4. #include "d4all.h"
  5.  
  6. int  h4move( char **ptr_ptr, int mem_ref, int move_ref, int move_before )
  7. {
  8.    if ( move_ref == mem_ref )  return move_ref ;
  9.  
  10.    h4remove( ptr_ptr, move_ref ) ;
  11.    return( h4add( ptr_ptr, mem_ref, move_ref, move_before )  ) ;
  12. }
  13.