A volte trovo che nei file del codice sorgente i commenti abbiano delle virgolette come queste, si noti ':
'help'
''help"
Ad esempio, questi sono commenti dal file di codice sorgente cat GNU, cat.c:
/* Plain cat. Copies the file behind 'input_desc' to STDOUT_FILENO. */
>
/* Select which version of 'cat' to use. If any options (more than -u,
--version, or --help) were specified, use 'cat', otherwise use
'simple_cat'. */
>
/* Suppress 'used before initialized' warning. */
Mentre in altre parti, "" è usato:
/* Determines how many consecutive newlines there have been in the
input. 0 newlines makes NEWLINES -1, 1 newline makes NEWLINES 1,
etc. Initially 0 to indicate that we are at the beginning of a
new line. The "state" of the procedure is determined by
NEWLINES. */
Che cosa significa "? e a cosa serve?