home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / nn.tar / nn-6.5.1 / contrib / nnsub / strsave.c < prev    next >
C/C++ Source or Header  |  1995-04-29  |  145b  |  11 lines

  1. extern char *malloc();
  2.  
  3. char *strsave(s)
  4. char *s;
  5. {
  6. char *result;
  7. result= malloc(strlen(s)+1);
  8. strcpy(result,s);
  9. return(result);
  10. } /* strsave */
  11.