CTF-All-In-One/src/writeup/6.1.5_pwn_grehackctf2017_beerfighter/inc/io.h
2017-11-24 10:57:02 +08:00

29 lines
480 B
C

#ifndef __IO_H__
#define __IO_H__
#include "types.h"
#include "syscall_constants.h"
#include "syscalls.h"
#define STDIN 0
#define STDOUT 1
#define STDERR 2
static intptr write(int fd, void const* data, uintptr nbytes);
uintptr strlen(char const* str);
uintptr puts(char const* str);
intptr read(int fd, char* buf, uintptr count);
int getchar(void);
char* gets(char* str);
char* fgets(char *str, int n, int stream);
int getdigit(char *inputphrase, int a, int b);
#endif