view src/libssh2-test.c @ 2199:d9e4f3b2002a

merge
author Volker Grabsch <vog@notjusthosting.com>
date Mon, 02 Jan 2012 11:29:26 +0100
parents a6f0aed4afde
children f653602a0500
line wrap: on
line source

/* This file is part of mingw-cross-env.       */
/* See doc/index.html for further information. */

#include <stdio.h>
#include <libssh2.h>

int main(int argc, char *argv[])
{
    (void)argc;
    (void)argv;
    libssh2_init(0);
    printf("libssh2 version: %s", libssh2_version(0) );
    libssh2_exit();
    return 0;
}