Version Module of libSIMDx86
The Version module of libSIMDx86 gives functions to display the version of the libSIMDx86 build, as well as the instruction set.

#include <SIMDx86/version.h>

int SIMDx86_GetMajorVersion()
Returns the major version of libSIMDx86. For example, version 0.2.1 gives 0.

int SIMDx86_GetMinorVersion()
Returns the minor version of libSIMDx86. For example, version 0.2.1 gives 2.

int SIMDx86_GetRevisionVersion()
Returns the revision version of libSIMDx86. For example, version 0.2.1 gives 1.

const char* SIMDx86_GetBuildString()
Returns a pointer to an ASCII string of the build options. They include the instruction set,  whether high precision mode was enabled, and whether NO_EMMS option was set. This pointer is not to be freed in any way.