ctang-vms.ch

来自「模拟器提供了一个简单易用的平台」· CH 代码 · 共 36 行

CH
36
字号
This is the change file for CWEB's CTANGLE for VAX/VMS.created:    01-FEB-1992 ST (Stephan Trebels <trebels@ams02.dnet.gwdg.de>)    > include ctype,stdio from textlibrary SYS$SHARE:VAXCDEF.TLB    > change banner line to include (VAX/VMS)    ? will someone make a CLD interface? (should be easy)(also modified by Don Knuth to keep version numbers uptodate)(these changes not necessary for initial bootstrapping)@x section 1 (01-FEB-1992 ST)@d banner "This is CTANGLE (Version 3.62)\n"@y@d banner "This is CTANGLE (VAX/VMS Version 3.62)\n"@z@x section 6 (from common.h) (01-FEB-1992 ST)#include <stdio.h>@y#include stdio /* VMS searches Textlibraries faster */@z@x section 62 (01-FEB-1992 ST)#include <ctype.h> /* definition of |isalpha|, |isdigit| and so on */@y#include ctype /* definition of |isalpha|, |isdigit| and so on */               /* VMS searches text libraries faster */@z@x section 63 (01-FEB-1992 ST)@d isxalpha(c) ((c)=='_') /* non-alpha character allowed in identifier */@y@d isxalpha(c) ((c)=='_' || (c)=='$') /* non-alpha characters allowed in id */@z

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?