如何将未知大小的缓冲区复制到c?
中的固定缓冲区中对于我的一个函数,我正在尝试将未知大小的缓冲区复制到固定缓冲区(大小为1024字节)。固定大小的缓冲区在结构中声明(稍后我需要立即发送结构的所有内容)。我不确定哪种功能最能解决这个问题。
我将发送struct buffer(ex_buffer)并重置struct buffer(ex_buffer)中的值;然后我需要将未知大小的缓冲区(缓冲区)中的下一个1024字节存储到固定缓冲区(ex_buffer)中,依此类推。
为了示例目的,我附上了一小段通用代码。
struct example {
char ex_buffer[1024];
}
int main (int argv, char *argv[]){
char *buffer = realloc(NULL, sizeof(char)*1024);
FILE *example = fopen(file,"r");
fseek(example, 0L, SEEK_END);
//we compute the size of the file and stores it in a variable called "ex_size"
fread(buffer, sizeof(char), ex_size, example);
fclose(example);
//Now we want to copy the 1024 bytes from the buffer (buffer) into the struct buffer (ex_buffer)
While( "some counter" < "# of bytes read"){
//copy the 1024 bytes into struct buffer
//Do something with the struct buffer, clear it
//Move onto the next 1024 bytes in the buffer (ex_buffer)
//Increment the counter
}
}
答案 0 :(得分:0)
使用memcpy()
,就像这样
memcpy(example.ex_buffer, buffer, 1024);
realloc(NULL ...
你真的应该写malloc()
。sizeof(char)
为1。