diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2014-01-27 14:26:21 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2014-01-27 14:26:21 (GMT) |
commit | 2f86aa75516bf4be8b8d250d4776bb89e1c5bfab (patch) | |
tree | 21fc364ef74e3f25e4c6cfdabf85ffde69a194c4 /config | |
parent | 8235d9820a644e39c8392a9048c159846ea0919e (diff) | |
download | hdf5-2f86aa75516bf4be8b8d250d4776bb89e1c5bfab.zip hdf5-2f86aa75516bf4be8b8d250d4776bb89e1c5bfab.tar.gz hdf5-2f86aa75516bf4be8b8d250d4776bb89e1c5bfab.tar.bz2 |
[svn-r24646] HDFFV-8640: Remove xlate_utility by fixing reference files to not add extra lines.
Tested: cmake and autotools local linux
Diffstat (limited to 'config')
-rw-r--r-- | config/cmake/xlatefile.c | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/config/cmake/xlatefile.c b/config/cmake/xlatefile.c deleted file mode 100644 index e220289..0000000 --- a/config/cmake/xlatefile.c +++ /dev/null @@ -1,56 +0,0 @@ -#include <stdio.h> -#include <string.h> -#include <stdlib.h> - -#define BUFFERSIZE 1024 - -int main(int argc, char *argv[]) { - FILE *infile = NULL; - FILE *outfile = NULL; - char *buffer = NULL; - char argbuf[8]; - size_t bytes = 0; - size_t idx = 0; - unsigned int lineidx = 0; - unsigned int stripXlines = 3; - - if(argc < 3) - exit(1); - if(NULL == (infile = fopen(argv[1], "rb"))) - exit(2); - if(NULL == (outfile = fopen(argv[2], "wb+"))) - exit(3); - if(argc > 3) - if(argv[3][0] == '-') - if(argv[3][1] == 'l') { - strcpy(argbuf, &argv[3][2]); - stripXlines = atoi(argbuf); - } - buffer = (char*)malloc(BUFFERSIZE); - if(buffer) { - while(!feof(infile)) { - /* read the file into the buffer. */ - bytes = fread(buffer, 1, BUFFERSIZE, infile); - if(lineidx < stripXlines) { - for(idx = 0; idx < bytes; idx++) { - if(buffer[idx] == '\n') { - lineidx++; - if(buffer[idx+1] == '\r') - idx++; - } - if(lineidx >= stripXlines) { - fwrite(&buffer[idx+1], 1, bytes-idx-1, outfile); - idx = bytes; - } - } - } - else - fwrite(buffer, 1, bytes, outfile); - } - free(buffer); - } - fclose(outfile); - fclose(infile); - - return 0; -} |