#include #include "stdio.h" #include "../stdio/_stdio.h" #include "../_assert.h" int fwide(FILE * stream, int mode) { ASSERT_NONNULL(stream); if (stream->orientation == 0) { stream->orientation = mode; } return stream->orientation; } /* STDC(199409) */