How do I get around the 256 character limit of "fputs".
I have data I need to put into a long, single row of a text file. I have concatinated data into long strings and I see there is a limit to how much can be written in one command. But I need to keep it in one single row for later exporting to Excel.
Since my data is concatinated from smaller strings, I could write to the row in several passes, then finalize the row with a CR/LF.
I have data I need to put into a long, single row of a text file. I have concatinated data into long strings and I see there is a limit to how much can be written in one command. But I need to keep it in one single row for later exporting to Excel.
Since my data is concatinated from smaller strings, I could write to the row in several passes, then finalize the row with a CR/LF.