I use fprintf() in my plugin, and it seems that not all of the data is put into the file.
Code:
fprintf(f, "%s %f %f %f %f %f %f %i ^"%s^" ^"%s^" ^"%s^" ^"%s^" ^"%s^" ^"%s^" ^"%s^" %f %i %f %f %f %i ^"%s^"^n", ...);
Is there a limit on the data length that can be put with this native?
If so, does fputs() have the same length limit?
If not, will it be okay if I did 2 fprintf() calls to fit it all?
__________________