ReactOS 0.4.16-dev-2122-g1628f5e
iob.c File Reference
#include <stdio.h>
#include <wine/asm.h>
Include dependency graph for iob.c:

Go to the source code of this file.

Functions

FILE *__cdecl __iob_func (void)
 
FILE *__cdecl __acrt_iob_func (unsigned idx)
 

Function Documentation

◆ __acrt_iob_func()

FILE *__cdecl __acrt_iob_func ( unsigned  idx)

Definition at line 35 of file iob.c.

36{
37 return __iob_func() + idx;
38}
unsigned int idx
Definition: utils.c:41
FILE *__cdecl __iob_func(void)
Definition: file.c:972

◆ __iob_func()

FILE *__cdecl __iob_func ( void  )

Definition at line 972 of file file.c.

973{
974 return iob_get_file(0);
975}
static FILE * iob_get_file(int i)
Definition: file.c:265

Referenced by __acrt_iob_func().