wmerg-pc.ch
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. Change file for wmerge, for MSDOS and Borland C++ 3.1.
  2. To compile the C file:  bcc -w-pro wmerge.c
  3. (This file contributed by Barry Schwartz, trashman@crud.mn.org, 28 Jun 94.)
  4. @x Section 19.
  5.     cur_file_name[l]='/'; /* UNIX/ pathname separator */
  6. @y
  7.     cur_file_name[l]='/'; /* A valid {mc MSDOS} pathname separator */
  8. @z
  9. @x Section 33.
  10.         if (*s=='.') dot_pos=s++;
  11.         else if (*s=='/') dot_pos=NULL,name_pos=++s;
  12.         else s++;
  13. @y
  14.         if (*s=='.') dot_pos=s++;
  15.         else if (*s==':' || *s=='\' || *s=='/') dot_pos=NULL,name_pos=++s;
  16.         else s++;
  17. @z