Hello.

I wonder if it is possible to append one file to another. Something like this:

FILE *text_file
FILE *aux_file;

text_file = fopen(filename, "w+");
.....
aux_file = funct_return_file();
.....

Then I would like to append aux_file to text_file

Thanks in advance for your suggestions.