Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #ifndef HEADER_H
  2. # define HEADER_H
  3.  
  4. typedef int (*t_operation_fun)(int, int);
  5.  
  6. int ft_atoi(char *str);
  7. int ft_plus(int a, int b);
  8. int ft_minus(int a, int b);
  9. int ft_multiply(int a, int b);
  10. int ft_div(int a, int b);
  11. int ft_mod(int a, int b);
  12. void ft_putchar(char c);
  13. void ft_putstr(char *str);
  14. void ft_putnbr(int nb);
  15. int put_div_error(void);
  16. int put_mod_error(void);
  17.  
  18. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement