summaryrefslogtreecommitdiff
path: root/other/Kermit/test/test_itos.cpp
blob: 35c335c174d33870821f2e35fe81f3db36c37d11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <itos16.hpp>
#include <iostream>


int main ()
{
  cout << itos16 (0x31337) << endl;
  cout << itos16 (0x7) << endl;
  cout << itos16 (0x1) << endl;
  cout << itos16 (0x131337) << endl;
  cout << itos16 (0x1131337) << endl;
  cout << itos16 (0x81131337) << endl;

  return 0;
}