home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / compat / string / stpcpy.txh < prev    next >
Encoding:
Text File  |  1995-07-23  |  316 b   |  17 lines

  1. @node stpcpy, string
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <string.h>
  6.  
  7. char *stpcpy(char *_dest, const char *_src);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. Like @code{strcpy} (@pxref{strcpy}), but return value different.
  13.  
  14. @subheading Return Value
  15.  
  16. Returns a pointer to the trailing NUL in @var{dest}.
  17.