24.12.2013, 23:33
How to remove entry in fwrite, like with INI - INI_RemoveEntry.
I am using INI because I'm beginner, but wanna try to understand fwrite as more as I can, for other things, not SA:MP.
E.g.
new File:file = fopen("somefile.txt", io_read);
fremoveentry(file, "Test2");
fclose(file);
Would be:
Thanks anyway!
I am using INI because I'm beginner, but wanna try to understand fwrite as more as I can, for other things, not SA:MP.
E.g.
Код:
Test1 Test2 Test3
fremoveentry(file, "Test2");
fclose(file);
Would be:
Код:
Test1 Test3