by Mathias <stroke@[EMAIL PROTECTED]
>
Jan 23, 2005 at 05:33 PM
If i want to write a plain text file i do it like this:
#include <string.h>
void Write2File(char* file,char* text)
{
FILE* fp = fopen(file,"w+");
fwrite(text,sizeof(char),strlen(text),fp);
fclose(fp);
}
That would do the job i guess.
--
You don't need a reason to help people!