Codebase list libcrypt-ssleay-perl / f83376ff-4263-4c21-be6d-58252278d554/main openssl-version.c
f83376ff-4263-4c21-be6d-58252278d554/main

Tree @f83376ff-4263-4c21-be6d-58252278d554/main (Download .tar.gz)

openssl-version.c @f83376ff-4263-4c21-be6d-58252278d554/mainraw · history · blame

1
2
3
4
5
6
7
8
#include <stdio.h>
#include <openssl/opensslv.h>

int main(void) {
    puts(OPENSSL_VERSION_TEXT);
    printf("%8lx\n", OPENSSL_VERSION_NUMBER);
    return 0;
}