diff -r d21cec66facc -r 976e629ce990 docs/Writerside/topics/streams.h.md --- a/docs/Writerside/topics/streams.h.md Wed Dec 31 16:05:38 2025 +0100 +++ b/docs/Writerside/topics/streams.h.md Wed Dec 31 16:18:48 2025 +0100 @@ -56,6 +56,12 @@ The following example shows how to read the contents of a file into a buffer: ```c +#include +#include +#include + +// ... + FILE *inputfile = fopen(infilename, "r"); if (inputfile) { CxBuffer fbuf;