diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-04-13 09:18:30 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-04-13 09:18:30 +0200 |
| commit | 629d52b1262879a346e9ca17567a8f483c60ba0a (patch) | |
| tree | b6d32f764980b08cea6327e9b8a472d88331aae9 /cpp00/ex01/utils.hpp | |
| parent | 8fc4395b9a61416e9bfee500e064dce7be9c8d7c (diff) | |
| download | piscine_cpp-629d52b1262879a346e9ca17567a8f483c60ba0a.tar.gz piscine_cpp-629d52b1262879a346e9ca17567a8f483c60ba0a.tar.bz2 piscine_cpp-629d52b1262879a346e9ca17567a8f483c60ba0a.zip | |
Fixed cpp00/ex01
Diffstat (limited to 'cpp00/ex01/utils.hpp')
| -rw-r--r-- | cpp00/ex01/utils.hpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cpp00/ex01/utils.hpp b/cpp00/ex01/utils.hpp new file mode 100644 index 0000000..716befd --- /dev/null +++ b/cpp00/ex01/utils.hpp @@ -0,0 +1,23 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* utils.hpp :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/04/13 07:31:38 by charles #+# #+# */ +/* Updated: 2020/04/13 09:07:18 by charles ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef UTILS_HPP +# define UTILS_HPP + +# include <iostream> +# include <sstream> +# include <string> +# include <cctype> + +int getInt(); + +#endif |
