mirror of
https://github.com/nganhkhoa/CTF-All-In-One.git
synced 2025-04-05 19:07:31 +07:00
29 lines
480 B
C
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
|