| 1322 | |
| 1323 | |
| 1324 | static void print_clo(const TEXT* prog_name) |
| 1325 | { |
| 1326 | /******************************************************************** |
| 1327 | ** |
| 1328 | ** p r i n t _ c l o |
| 1329 | ** |
| 1330 | ********************************************************************* |
| 1331 | ** |
| 1332 | ** Functional description: |
| 1333 | ** |
| 1334 | ** print out gsplit utility command line options |
| 1335 | ** |
| 1336 | ********************************************************************* |
| 1337 | */ |
| 1338 | |
| 1339 | fprintf(stderr, "%s: Command Line Options Are:\n", prog_name); |
| 1340 | fprintf(stderr, |
| 1341 | " gsplit -S[PLIT_BK_FILE] <file> <size>{k|m|g} [... <file> [<size>{k|m|g}]] or\n"); |
| 1342 | fprintf(stderr, " gsplit -J[OINT_BK_FILE] <file> [... <file>]\n"); |
| 1343 | fprintf(stderr, "%s: option can be abbreviated to the unparenthesized characters\n", prog_name); |
| 1344 | fprintf(stderr, "%s: Exiting before completion due to errors\n", prog_name); |
| 1345 | |
| 1346 | //return FB_SUCCESS; |
| 1347 | |
| 1348 | } |
| 1349 | |
| 1350 | |
| 1351 | static int set_hdr_str(TEXT header_str[], const TEXT* in_str, SLONG pos, SLONG len) |
no outgoing calls
no test coverage detected