Skip to content
Snippets Groups Projects
jokenpo.hpp 632 B
Newer Older
/**
 * @file       jokenpo.hpp
 * @author     Louise Stella    <louiselbarbosa@gmail.com> 
 * @version    1.0
 *
 * This is the header file for the jokenpo functions used on the Jokenpo library.
 *
 * Created for the "Linguagem de Programação I" class from the
 * Universidade Federal do Rio Grande do Norte em 24/06/2017.
 * 
 */

Louise's avatar
Louise committed
#ifndef _JOKENPO_H_
#define _JOKENPO_H_

Louise's avatar
Louise committed
namespace jokenpo {
Louise's avatar
Louise committed

    extern "C" int sum(int a, int b);
Louise's avatar
Louise committed
    
    extern "C" int jokenpo(void);
    extern "C" int cpuMove(void);

Louise's avatar
Louise committed

    template <typename T>
Louise's avatar
Louise committed
    void print ( T whatToPrint ){
        std::cout << whatToPrint << std::endl;
Louise's avatar
Louise committed
    }
}

#endif