eg0rmaffin

mrthex00

Jul 11th, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <unistd.h>  
  2.  
  3.  
  4. void    ft_generic(void)
  5. {
  6.     char *str;
  7.     str = "Tut tut ; Tut tut";
  8.     write (1, str, 17);
  9.     write (1, '\n', 1);
  10. }
  11.  
  12.  
  13.  
  14. int main()
  15. {
  16.     ft_generic();
  17.     return (0);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment