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

通讯编程

开发平台:

Visual C++

  1. This is the change file for CWEB's CTANGLE for VAX/VMS.
  2. created:
  3.     01-FEB-1992 ST (Stephan Trebels <trebels@ams02.dnet.gwdg.de>)
  4.     > include ctype,stdio from textlibrary SYS$SHARE:VAXCDEF.TLB
  5.     > change banner line to include (VAX/VMS)
  6.     ? will someone make a CLD interface? (should be easy)
  7. (also modified by Don Knuth to keep version numbers uptodate)
  8. (these changes not necessary for initial bootstrapping)
  9. @x section 1 (01-FEB-1992 ST)
  10. @d banner "This is CTANGLE (Version 3.4)n"
  11. @y
  12. @d banner "This is CTANGLE (VAX/VMS Version 3.4)n"
  13. @z
  14. @x section 6 (from common.h) (01-FEB-1992 ST)
  15. #include <stdio.h>
  16. @y
  17. #include stdio /* VMS searches Textlibraries faster */
  18. @z
  19. @x section 62 (01-FEB-1992 ST)
  20. #include <ctype.h> /* definition of |isalpha|, |isdigit| and so on */
  21. @y
  22. #include ctype /* definition of |isalpha|, |isdigit| and so on */
  23.                /* VMS searches text libraries faster */
  24. @z
  25. @x section 63 (01-FEB-1992 ST)
  26. @d isxalpha(c) ((c)=='_') /* non-alpha character allowed in identifier */
  27. @y
  28. @d isxalpha(c) ((c)=='_' || (c)=='$') /* non-alpha characters allowed in id */
  29. @z