musl/src/stdio/fwide.c

15 lines
251 B
C
Raw Normal View History

#include <wchar.h>
2011-02-12 00:22:29 -05:00
#include "stdio_impl.h"
#define SH (8*sizeof(int)-1)
#define NORMALIZE(x) ((x)>>SH | -((-(x))>>SH))
int fwide(FILE *f, int mode)
{
FLOCK(f);
if (!f->mode) f->mode = NORMALIZE(mode);
mode = f->mode;
FUNLOCK(f);
return mode;
2011-02-12 00:22:29 -05:00
}