simplersble 0.11.0-dev21

The all-in-one Bluetooth library that makes it easy to add wireless connectivity to your projects.
Documentation
#pragma once

#include <simpleble/export.h>

#include <simpleble_c/types.h>

#ifdef __cplusplus
extern "C" {
#endif

/**
 * Returns the operating system on which SimpleBLE library is currently running.
 *
 * @return A simpleble_os_t value representing the current operating system.
 */
SIMPLEBLE_EXPORT simpleble_os_t simpleble_get_operating_system(void);

/**
 * Returns a string representing the version of the SimpleBLE library.
 *
 * @return A const char pointer to the version string.
 */
SIMPLEBLE_EXPORT const char* simpleble_get_version(void);

#ifdef __cplusplus
}
#endif