Advertisement
basyair07

mystdio.h

Oct 16th, 2024
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.31 KB | None | 0 0
  1. // mystdio.h
  2. #ifndef MYSTDIO_H
  3. #define MYSTDIO_H
  4.  
  5. #define STDIN 0      // File descriptor untuk stdin (input standar)
  6. #define STDOUT 1     // File descriptor untuk stdout (output standar)
  7. #define NULL ((void *)0)
  8.  
  9. void myprintf(const char *format, ...);
  10. void myscanf(const char *format, void *value);
  11.  
  12. #endif
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement