You've already forked smb-decomp
mirror of
https://github.com/encounter/smb-decomp.git
synced 2026-03-30 11:38:28 -07:00
21 lines
415 B
C
21 lines
415 B
C
#ifndef _STDIO_H_
|
|
#define _STDIO_H_
|
|
|
|
#include <stdarg.h>
|
|
|
|
typedef struct
|
|
{
|
|
unsigned char filler0[4];
|
|
unsigned short unk4b0:7;
|
|
unsigned short unk4b7:3;
|
|
unsigned short unk4b10:2;
|
|
} 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
|