Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.35 KB | None | 0 0
  1. #include <unistd.h>
  2. #include <signal.h>
  3. #include <sys/types.h>
  4. #include <sys/stat.h>
  5. #include <fcntl.h>
  6. #include <stdlib.h>
  7.  
  8. #define FUFFER (9000)
  9.  
  10. void     my_putchar(char c);
  11.  
  12. void     my_putstr(char *str);
  13.  
  14. void     my_putnbr(int nb);
  15.  
  16. int     my_strlen(char *str);
  17.  
  18. int     my_getnbr(char *str);
  19.  
  20. char    *my_strdup(char *str);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement