DEBSOURCES
Skip Quicknav
sources / yodl / 4.05.02-1 / file / fileappend.c
12345678
#include "file.ih" void file_append(FILE *dest, char const *path) { FILE *f = file_open(path, "r"); file_copy2offset(dest, f, EOF); fclose(f); }