Files
42_INT_09_piscine_cpp/d07/ex01/headers/ToUpper.hpp
2022-03-10 19:12:00 +01:00

15 lines
175 B
C++

#ifndef TOUPPER_HPP
# define TOUPPER_HPP
# include <iostream>
# include <string>
# include <cctype>
template< typename T >
void ToUpper(T & e) {
e = toupper(e);
}
#endif