summaryrefslogtreecommitdiffstats
path: root/examples/printVersion.c
blob: f86e469f993a9285c5df21c43410545a0a4a2919 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>
#include "lz4.h"

int main(int argc, char** argv)
{
    printf("Hello, LZ4 (version = %d)\n", LZ4_versionNumber());
    return 0;
}