beta-0.89.2
[luatex.git] / source / texk / web2c / cwebdir / cweav-w32.ch
blob26825b0bfd103bf6cdd4aacc51d548243e0e08a2
1 This is the change file for CWEB's CWEAVE under Win32
2 (Contributed by Fabrice Popineau, February 2002)
4 @x section 1
5 @d banner "This is CWEAVE (Version 3.64)\n"
6 @y
7 @d banner "This is CWEAVE (Version 3.64win32)\n"
8 @z
11 @ We predeclare several standard system functions here instead of including
12 their system header files, because the names of the header files are not as
13 standard as the names of the functions. (For example, some \CEE/ environments
14 have \.{<string.h>} where others have \.{<strings.h>}.)
16 @<Predecl...@>=
17 extern int strlen(); /* length of string */
18 extern int strcmp(); /* compare strings lexicographically */
19 extern char* strcpy(); /* copy one string to another */
20 extern int strncmp(); /* compare up to $n$ string characters */
21 extern char* strncpy(); /* copy up to $n$ string characters */
26 int names_match(p,first,l,t)
27 name_pointer p; /* points to the proposed match */
29 int __cdecl names_match(p,first,l,t)
30 name_pointer p; /* points to the proposed match */
34 void
35 init_p(p,t)
36 name_pointer p;
38 void __cdecl
39 init_p(p,t)
40 name_pointer p;
44 @ @<Include...@>=
45 #include <ctype.h> /* definition of |isalpha|, |isdigit| and so on */
46 #include <stdlib.h> /* definition of |exit| */
48 @ @<Include...@>=
49 #include <ctype.h> /* definition of |isalpha|, |isdigit| and so on */
50 #include <stdlib.h> /* definition of |exit| */
51 #include <string.h> /* definition of |strncmp| and |strncpy| */