summaryrefslogtreecommitdiffstats
path: root/tools/src/h5jam/h5unjam.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/src/h5jam/h5unjam.c')
-rw-r--r--tools/src/h5jam/h5unjam.c55
1 files changed, 27 insertions, 28 deletions
diff --git a/tools/src/h5jam/h5unjam.c b/tools/src/h5jam/h5unjam.c
index 1c8c24a..1cda5d4 100644
--- a/tools/src/h5jam/h5unjam.c
+++ b/tools/src/h5jam/h5unjam.c
@@ -51,34 +51,33 @@ static void
usage(const char *prog)
{
HDfflush(stdout);
- HDfprintf(stdout, "usage: %s -i <in_file.h5> [-o <out_file.h5> ] [-u <out_user_file> | --delete]\n",
- prog);
- HDfprintf(stdout, "\n");
- HDfprintf(stdout, "Splits user file and HDF5 file into two files: user block data and HDF5 data.\n");
- HDfprintf(stdout, "\n");
- HDfprintf(stdout, "OPTIONS\n");
- HDfprintf(stdout, " -i in_file.h5 Specifies the HDF5 as input. If the input HDF5 file\n");
- HDfprintf(stdout, " contains no user block, exit with an error message.\n");
- HDfprintf(stdout, " -o out_file.h5 Specifies output HDF5 file without a user block.\n");
- HDfprintf(stdout, " If not specified, the user block will be removed from the\n");
- HDfprintf(stdout, " input HDF5 file.\n");
- HDfprintf(stdout, " -u out_user_file\n");
- HDfprintf(stdout, " Specifies the output file containing the data from the\n");
- HDfprintf(stdout, " user block.\n");
- HDfprintf(stdout, " Cannot be used with --delete option.\n");
- HDfprintf(stdout, " --delete Remove the user block from the input HDF5 file. The content\n");
- HDfprintf(stdout, " of the user block is discarded.\n");
- HDfprintf(stdout, " Cannot be used with the -u option.\n");
- HDfprintf(stdout, "\n");
- HDfprintf(stdout, " -h Prints a usage message and exits.\n");
- HDfprintf(stdout, " -V Prints the HDF5 library version and exits.\n");
- HDfprintf(stdout, "\n");
- HDfprintf(stdout, " If neither --delete nor -u is specified, the user block from the input file\n");
- HDfprintf(stdout, " will be displayed to stdout.\n");
- HDfprintf(stdout, "\n");
- HDfprintf(stdout, "Exit Status:\n");
- HDfprintf(stdout, " 0 Succeeded.\n");
- HDfprintf(stdout, " >0 An error occurred.\n");
+ fprintf(stdout, "usage: %s -i <in_file.h5> [-o <out_file.h5> ] [-u <out_user_file> | --delete]\n", prog);
+ fprintf(stdout, "\n");
+ fprintf(stdout, "Splits user file and HDF5 file into two files: user block data and HDF5 data.\n");
+ fprintf(stdout, "\n");
+ fprintf(stdout, "OPTIONS\n");
+ fprintf(stdout, " -i in_file.h5 Specifies the HDF5 as input. If the input HDF5 file\n");
+ fprintf(stdout, " contains no user block, exit with an error message.\n");
+ fprintf(stdout, " -o out_file.h5 Specifies output HDF5 file without a user block.\n");
+ fprintf(stdout, " If not specified, the user block will be removed from the\n");
+ fprintf(stdout, " input HDF5 file.\n");
+ fprintf(stdout, " -u out_user_file\n");
+ fprintf(stdout, " Specifies the output file containing the data from the\n");
+ fprintf(stdout, " user block.\n");
+ fprintf(stdout, " Cannot be used with --delete option.\n");
+ fprintf(stdout, " --delete Remove the user block from the input HDF5 file. The content\n");
+ fprintf(stdout, " of the user block is discarded.\n");
+ fprintf(stdout, " Cannot be used with the -u option.\n");
+ fprintf(stdout, "\n");
+ fprintf(stdout, " -h Prints a usage message and exits.\n");
+ fprintf(stdout, " -V Prints the HDF5 library version and exits.\n");
+ fprintf(stdout, "\n");
+ fprintf(stdout, " If neither --delete nor -u is specified, the user block from the input file\n");
+ fprintf(stdout, " will be displayed to stdout.\n");
+ fprintf(stdout, "\n");
+ fprintf(stdout, "Exit Status:\n");
+ fprintf(stdout, " 0 Succeeded.\n");
+ fprintf(stdout, " >0 An error occurred.\n");
}
/*-------------------------------------------------------------------------