...
| Code Block | ||
|---|---|---|
| ||
void do_stuff(void) {
FILE \*logfile = fopen("log", "a");
\/* Check for errors, write logs pertaining to do_stuff(), etc. */
}
int main(void)
{
FILE *logfile = fopen("log", "a"); /* Check for errors, write logs pertaining to main(), etc. */
do_stuff();
/* ... */
}
|
...