d07 ex01 ok

This commit is contained in:
hugogogo
2022-03-10 19:12:00 +01:00
parent 3433fafd87
commit a38d7184e3
7 changed files with 198 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef TOUPPER_HPP
# define TOUPPER_HPP
# include <iostream>
# include <string>
# include <cctype>
template< typename T >
void ToUpper(T & e) {
e = toupper(e);
}
#endif