pathcat.txt
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. SUMMARY 
  2. #include <tools.h>
  3. char *pathcat (char *pDst, char *pSrc)
  4. DESCRIPTION
  5.    pathcat - handle concatenation of path strings
  6.     
  7.    Care must be take to handle:
  8.        ""     XXX     => XXX
  9.        A     B     => AB
  10.        A           B     => AB
  11.        A     B     => AB
  12.        A           B     => AB
  13.        pDst char pointer to location of 'A' above
  14.        pSrc char pointer to location of 'B' above
  15. RETURN VALUE
  16. returns pDst
  17. IMPLEMENTATION
  18. SEE ALSO   
  19. NOTE
  20. EXAMPLE