Initialise a section to the defaults. */
| 273 | |
| 274 | /* Initialise a section to the defaults. */ |
| 275 | static void init_section(local_vars *psection) |
| 276 | { |
| 277 | memset(psection, 0, sizeof (local_vars)); |
| 278 | copy_section(psection, &Vars.l); |
| 279 | } |
| 280 | |
| 281 | /* Do a case-insensitive, whitespace-ignoring string equality check. */ |
| 282 | static int strwiEQ(char *psz1, char *psz2) |
no test coverage detected