#ifndef _JOKENPO_H_ #define _JOKENPO_H_ namespace exemplo { extern "C" void print(std::string phrase); extern "C" int sum(int a, int b); template <typename T> T max ( T a, T b ){ return (a > b) ? a : b; } } #endif