21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
contain no profanity, obscenity, or innuendo.
16. All C-code conforms to ANSI C-89.
17. All comments and identifiers are in English.
18. The program is single-threaded. Do not use threads.
(One except to this is the HTTP server implementation for windows,
which we do not know how to implement without the use of threads.)
<b>C preprocessor macros</b>:
20. The purpose of every preprocessor macros is clearly explained in a
comment associated with its definition.
|
|
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
contain no profanity, obscenity, or innuendo.
16. All C-code conforms to ANSI C-89.
17. All comments and identifiers are in English.
18. The program is single-threaded. Do not use threads.
(One exception to this is the HTTP server implementation for windows,
which we do not know how to implement without the use of threads.)
<b>C preprocessor macros</b>:
20. The purpose of every preprocessor macros is clearly explained in a
comment associated with its definition.
|