Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // mystdio.h
- #ifndef MYSTDIO_H
- #define MYSTDIO_H
- #define STDIN 0 // File descriptor untuk stdin (input standar)
- #define STDOUT 1 // File descriptor untuk stdout (output standar)
- #define NULL ((void *)0)
- void myprintf(const char *format, ...);
- void myscanf(const char *format, void *value);
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement