source: testjes/testc.cpp @ 10

Last change on this file since 10 was 10, checked in by willem, 11 years ago

willem

File size: 288 bytes
Line 
1#include <iostream>
2#include <wutils.h>
3// g++ testc.cpp -I ../trunk ../trunk/libwutils.a
4int main()
5{
6  std::string s ="aap noor mies";
7  std::string c,d;
8
9  c = compress_string(s);
10  d = decompress_string(c);
11
12  std::cout << s << std::endl;
13  std::cout << d << std::endl;
14  return 0;
15}
Note: See TracBrowser for help on using the repository browser.