I have a file pointer which I am using with fgets() to give me a complete line along with the new line in the buffer. I want to replace 1 char and add another character before the new line. Is that possible? For example:
buffer is "12345;\n"
output buffer is "12345xy\n"
This is the code:
buff = fgets((char *)newbuff, IO_BufferSize , IO_handle[i_inx]->fp);
nptr = IO_handle[i_inx]->fp;
if(feof(nptr))
{
memcpy((char *)o_rec_buf+(strlen((char *)newbuff)-1),"E",1);
}
else
{
memcpy((char *)o_rec_buf+(strlen((char *)newbuff)-1),"R",1);
}
As you can see I am replacing the new line here (example line is shown above). I want to insert the text and retain the new line instead of what I am doing above.
newbuffando_rec_buffthat makes them necessary? You should eschew casts unless they are necessary, and it is far from obvious why they would be needed. Also, the 'if (feof(nptr))' test is an import from Pascal-think. You should test the return value fromfgets(). Also note that the contents of the buffer are undefined if thefgets()call fails - that means you cannot rely on it containing anything sane. (It probably will be the same as before the failed call, but you cannot rely on it being so.) – Jonathan Leffler Dec 27 '09 at 16:58