mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
14870d7625
* Added tests for c++ source and header files and java files. * Added VHDL to languages and tests * Updated readme Updated to reflect VHDL being added to languages
22 lines
249 B
C++
22 lines
249 B
C++
/* 21 lines 11 code 5 comments 5 blanks */
|
|
#ifndef TEST_H
|
|
#define TEST_H
|
|
|
|
#include <iostream>
|
|
|
|
//Some definitions
|
|
extern int out;
|
|
void foo();
|
|
|
|
/*
|
|
* Templated function
|
|
*/
|
|
template<typename T>
|
|
void print_value(T& t)
|
|
{
|
|
std::cout<<t;
|
|
}
|
|
|
|
|
|
#endif
|