catrm
'cat' a file, then optionally 'rm' it. I just felt like writing C.
Log
|
Files
|
Refs
|
Atom
|
README
fcat.h (69B)
1
#ifndef fcopy
2
#define fcopy
3
4
int fcat(FILE *src, FILE *dst);
5
6
#endif