バイナリファイルで0x0D0Aを検索しようとしていますが、0x00が見つかるとstrchrが停止し、正しい位置を取得しません。memchr a binファイル
それは
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <windows.h>
main(){
FILE *f;
long size;
char *buffer;
f = fopen(filename, "rb");
if(f==NULL){fputs("File error",stderr); exit(1);}
// obtain file size
fseek(f, 0, SEEK_END);
size = ftell(f);
rewind(f);
// allocate memory to contain the whole file
buffer = (char*) malloc(sizeof(char)*size);
if(buffer == NULL){fputs("Memory error",stderr); exit(2);}
// copy the file into the buffer
if((size_t)fread(buffer,1,size,f) != size){fputs("Reading error",stderr); exit(3);}
fclose(f);
// get positions
char *p;
p = strchr(buffer, 0x0D0A);
while(p != NULL){
printf("found at %d\n", p-buffer-1);
p = strchr(p+2, 0x0D0A);
}
free(buffer);
return 0;
}
アップデートを働いていない理由を
はif(((char*) memchr(p+1, 0x0A, size))-1 == p)
が(すでに一つの理由を説明しましたが、可能になりました
int *pos,i=0;
char *p;
p = (char*) memchr(buffer, 0x0D, size);
while(p != NULL){
if(((char*) memchr(p+1, 0x0A, size))-1 == p){
pos[i++] = p-buffer-1;
printf("found at %d\n", pos[i-1]);// check
}
p = (char*) memchr(p+2, 0x0D, size);
}
あなたはその理由を知っています。なぜそれが機能しないのか尋ねますか? –
私は彼がそれに対処することを求めていると思います – akappa
あなたのファイルで 'mmap'を使って、@Marioの解決法を使うことができます。 – hochl