| 367 | } |
| 368 | |
| 369 | static int h_include(int argc, unsigned char **argv){ |
| 370 | int res; |
| 371 | FILE *fp1; |
| 372 | |
| 373 | fp1 = fopen((char *)argv[1], "r"); |
| 374 | if(!fp1){ |
| 375 | fprintf(stderr, "Unable to open included file: %s\n", argv[1]); |
| 376 | return 1; |
| 377 | } |
| 378 | res = readconfig(fp1); |
| 379 | fclose(fp1); |
| 380 | return res; |
| 381 | } |
| 382 | |
| 383 | static int h_archiver(int argc, unsigned char **argv){ |
| 384 | int j; |
nothing calls this directly
no test coverage detected