libversion-sys 0.2.1

FFI bindings to libversion, an advanced version string comparison library
Documentation

#ifndef LIBVERSION_EXPORT_H
#define LIBVERSION_EXPORT_H

#ifdef LIBVERSION_STATIC_DEFINE
#  define LIBVERSION_EXPORT
#  define LIBVERSION_NO_EXPORT
#else
#  ifndef LIBVERSION_EXPORT
#    ifdef libversion_EXPORTS
        /* We are building this library */
#      define LIBVERSION_EXPORT __attribute__((visibility("default")))
#    else
        /* We are using this library */
#      define LIBVERSION_EXPORT __attribute__((visibility("default")))
#    endif
#  endif

#  ifndef LIBVERSION_NO_EXPORT
#    define LIBVERSION_NO_EXPORT __attribute__((visibility("hidden")))
#  endif
#endif

#ifndef LIBVERSION_DEPRECATED
#  define LIBVERSION_DEPRECATED __attribute__ ((__deprecated__))
#endif

#ifndef LIBVERSION_DEPRECATED_EXPORT
#  define LIBVERSION_DEPRECATED_EXPORT LIBVERSION_EXPORT LIBVERSION_DEPRECATED
#endif

#ifndef LIBVERSION_DEPRECATED_NO_EXPORT
#  define LIBVERSION_DEPRECATED_NO_EXPORT LIBVERSION_NO_EXPORT LIBVERSION_DEPRECATED
#endif

/* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */
#if 0 /* DEFINE_NO_DEPRECATED */
#  ifndef LIBVERSION_NO_DEPRECATED
#    define LIBVERSION_NO_DEPRECATED
#  endif
#endif

#endif /* LIBVERSION_EXPORT_H */