home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / string / memcpy.txh < prev    next >
Encoding:
Text File  |  1995-07-10  |  377 b   |  24 lines

  1. @node memcpy, memory
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <string.h>
  6.  
  7. void *memcpy(void *dest, const void *src, int num);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. This function copies @var{num} bytes from @var{source} to @var{dest}. 
  13.  
  14. @subheading Return Value
  15.  
  16. @var{dest}
  17.  
  18. @subheading Example
  19.  
  20. @example
  21. memcpy(buffer, temp_buffer, BUF_MAX);
  22. @end example
  23.  
  24.