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

通讯编程

开发平台:

Visual C++

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