home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / man / cat3 / memmove.0 < prev    next >
Text File  |  1993-12-07  |  1KB  |  67 lines

  1.  
  2. MEMMOVE(3)                 UNIX Programmer's Manual                 MEMMOVE(3)
  3.  
  4. NNAAMMEE
  5.      mmeemmmmoovvee - copy byte string
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttrriinngg..hh>>
  9.  
  10.      _v_o_i_d _*
  11.      mmeemmmmoovvee(_v_o_i_d _*_d_s_t, _c_o_n_s_t _v_o_i_d _*_s_r_c, _s_i_z_e___t _l_e_n)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The mmeemmmmoovvee() function copies _l_e_n bytes from string _s_r_c to string _d_s_t.
  15.      The two strings may overlap; the copy is always done in a non­destructive
  16.      manner.
  17.  
  18. RREETTUURRNN VVAALLUUEESS
  19.      The mmeemmmmoovvee() function returns the original value of _d_s_t.
  20.  
  21. SSEEEE AALLSSOO
  22.      bcopy(3),  memccpy(3),  memcpy(3),  strcpy(3)
  23.  
  24. SSTTAANNDDAARRDDSS
  25.      The mmeemmmmoovvee() function conforms to ANSI C3.159­1989 (``ANSI C'').
  26.  
  27. BSD Experimental                 June 29, 1991                               1
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.