⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 comm-w32.ch

📁 著名算法大师高爷爷设计的语言。此语言结合了Tex和C
💻 CH
字号:
This is the change file for CWEB's COMMON under Win32(Contributed by Fabrice Popineau, February 2002 <Fabrice.Popineau@supelec.fr>)The Microsoft C compiler included in Visual Studio allows for differentparameter passing conventions than the standard one. This is actuallyspecified with the Intel IA32 architecture. There exist threecalling conventions under the IA32 architecture as defined by Intel.One of them is the standard C calling convention: Parameters are passed onthe stack, calling function is responsible to unstack arguments.  Names aredecorated with a prefixed underscore.  It is called the __cdecl convention.Another calling convention is the __fastcall convention. The first two 32bitsarguments are passed on the stack.  The called function is responsible forstack maintenance.  Names are decorated with an @ sign as prefix, and another@ sign followed by the size of the arguments as suffix.The third one is the __stdcall convention and is basically the Pascal callingconvention.Using the __fastcall convention is usually faster on Intel architecture. Namesare decorated because obviously a __cdecl function can't behave the same wayas a __fastcall one of the same prototype.  So the new full prototype includesthe keyword __cdecl or __fastcall. A compiler option allows to compile allfunctions using one or the other calling convention. If you compile using__fastcall, then you are bound to explicitly declare a few functions as__cdecl : the ones that are passed to the C library (like function pointersfor qsort() or signal()) or functions that replace functions from the Clibrary, because the standard headers have a __cdecl prototype for thesefunctions. Also, you cannot declare a library function without giving it theexact prototype used in the library headers files. So you'd better use theheader files to be safe.Admittedly, this is not vital for cweb, except that I build the whole texliveset of programs using the __fastcall convention.@x@<Include files@>=#include <ctype.h>@y@<Include files@>=#include <ctype.h>#include <string.h>@z@x@ @<Predec...@>=extern int names_match();@y@ @<Predec...@>=extern int __cdecl names_match();@z@x@<Pred...@>=void init_p();@y@<Pred...@>=void __cdecl init_p();@z@x section 69An omitted change file argument means that |"/dev/null"| should be used,@yAn omitted change file argument means that |"NUL"| should be used,@z@x section 70 (this change copied from comm-bs.ch, July 94)        else if (*s=='/') dot_pos=NULL,name_pos=++s;@y        else if (*s == ':' || *s == '\\' || *s == '/')	  dot_pos=NULL,name_pos=++s;@z@x section 70  if (found_change<=0) strcpy(change_file_name,"/dev/null");@y  if (found_change<=0) strcpy(change_file_name,"NUL");@z@x@ We predeclare several standard system functions here instead of includingtheir system header files, because the names of the header files are not asstandard as the names of the functions. (For example, some \CEE/ environmentshave \.{<string.h>} where others have \.{<strings.h>}.)@<Predecl...@>=extern int strlen(); /* length of string */extern int strcmp(); /* compare strings lexicographically */extern char* strcpy(); /* copy one string to another */extern int strncmp(); /* compare up to $n$ string characters */extern char* strncpy(); /* copy up to $n$ string characters */@y@z

⌨️ 快捷键说明

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