current version
[opsoft_test.git] / gclib2 / unit_tests / http.cxx
blobe312564f2b09f5fc0d4944040a029c18fb1403bb
1 /*
2 * (c) Oleg Puchinin 2008
3 * graycardinalster@gmail.com
5 */
7 #include <gclib2.h>
8 #include <http.h>
10 int main (int argc, char ** argv)
12 int size;
13 char * m_data;
15 m_data = http_get (argv[1], &size);
16 fwrite (m_data, 1, size, stdout);