Я пытаюсь прочитать содержимое файла в моей программе, но иногда получаю символы мусора в конце буферов. Я не много использовал C (скорее я использовал C ++), но я предполагаю, что это как-то связано с потоками. Я действительно не знаю, что делать, хотя. Я использую MinGW.
Вот код (это дает мне мусор в конце второго чтения):
#include <stdio.h>
#include <stdlib.h>
char* filetobuf(char *file)
{
FILE *fptr;
long length;
char *buf;
fptr = fopen(file, "r"); /* Open file for reading */
if (!fptr) /* Return NULL on failure */
return NULL;
fseek(fptr, 0, SEEK_END); /* Seek to the end of the file */
length = ftell(fptr); /* Find out how many bytes into the file we are */
buf = (char*)malloc(length+1); /* Allocate a buffer for the entire length of the file and a null terminator */
fseek(fptr, 0, SEEK_SET); /* Go back to the beginning of the file */
fread(buf, length, 1, fptr); /* Read the contents of the file in to the buffer */
fclose(fptr); /* Close the file */
buf[length] = 0; /* Null terminator */
return buf; /* Return the buffer */
}
int main()
{
char* vs;
char* fs;
vs = filetobuf("testshader.vs");
fs = filetobuf("testshader.fs");
printf("%s\n\n\n%s", vs, fs);
free(vs);
free(fs);
return 0;
}
Функция filetobuf из этого примера http://www.opengl.org/wiki/Tutorial2:_VAOs,_VBOs,_Vertex_and_Fragment_Shaders_%28C_/_SDL%29. Мне кажется, что это правильно.
Так или иначе, что с этим?