You've already forked smb-decomp
mirror of
https://github.com/encounter/smb-decomp.git
synced 2026-03-30 11:38:28 -07:00
35 lines
715 B
C
35 lines
715 B
C
#ifndef _STDIO_H_
|
|
#define _STDIO_H_
|
|
|
|
#include <stdarg.h>
|
|
|
|
typedef struct
|
|
{
|
|
int unk0;
|
|
unsigned short unk4b0:7;
|
|
unsigned short unk4b7:3;
|
|
unsigned short unk4b10:2;
|
|
unsigned short unk4b12:1;
|
|
unsigned char filler6[0x14-0x6];
|
|
int unk14;
|
|
int unk18;
|
|
int unk1C;
|
|
int unk20;
|
|
int unk24;
|
|
int unk28;
|
|
unsigned char filler2C[0x30-0x2C];
|
|
int unk30;
|
|
unsigned char filler34[0x3C-0x34];
|
|
int (*unk3C)();
|
|
unsigned char filler40[4];
|
|
int unk44;
|
|
} FILE;
|
|
|
|
int puts(const char *s);
|
|
int printf(const char *, ...);
|
|
int sprintf(char *s, const char *format, ...);
|
|
int vprintf(const char *format, va_list arg);
|
|
int vsprintf(char *s, const char *format, va_list arg);
|
|
|
|
#endif
|