10 строки
162 B
C++
10 строки
162 B
C++
#ifndef TEXT_H_INCLUDED
|
|
#define TEXT_H_INCLUDED
|
|
|
|
#include <vector>
|
|
using namespace std;
|
|
|
|
void show_histogram_text(vector<size_t> bins, size_t bin_count);
|
|
|
|
#endif
|