This is the PAL (Platform Adaptation Layer) for the Pubnub C-core library.

Dependencies:   Pubnub_c_core

Dependents:   Pubnub_mbed2_sync

pubnub_version_mbed.cpp

Committer:
sveljko
Date:
2016-11-10
Revision:
0:389a44951c54

File content as of revision 0:389a44951c54:

/* -*- c-file-style:"stroustrup"; indent-tabs-mode: nil -*- */
#include "pubnub_version.h"

#define PUBNUB_SDK_NAME "mbed2"
#define PUBNUB_SDK_VERSION "2.2.0"


char const *pubnub_sdk_name(void)
{ 
    return PUBNUB_SDK_NAME;
}


char const *pubnub_version(void)
{
    return PUBNUB_SDK_VERSION;
}


char const *pubnub_uname(void)
{
    return PUBNUB_SDK_NAME "%2F" PUBNUB_SDK_VERSION;
}