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

Dependencies:   Pubnub_c_core

Dependents:   Pubnub_mbed2_sync

Committer:
sveljko
Date:
Tue Dec 06 10:22:54 2016 +0000
Revision:
3:be58f6801809
Parent:
0:389a44951c54
Update doc for srand_from_pubnub_time()

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sveljko 0:389a44951c54 1 /* -*- c-file-style:"stroustrup"; indent-tabs-mode: nil -*- */
sveljko 0:389a44951c54 2 #include "pubnub_version.h"
sveljko 0:389a44951c54 3
sveljko 0:389a44951c54 4 #define PUBNUB_SDK_NAME "mbed2"
sveljko 0:389a44951c54 5 #define PUBNUB_SDK_VERSION "2.2.0"
sveljko 0:389a44951c54 6
sveljko 0:389a44951c54 7
sveljko 0:389a44951c54 8 char const *pubnub_sdk_name(void)
sveljko 0:389a44951c54 9 {
sveljko 0:389a44951c54 10 return PUBNUB_SDK_NAME;
sveljko 0:389a44951c54 11 }
sveljko 0:389a44951c54 12
sveljko 0:389a44951c54 13
sveljko 0:389a44951c54 14 char const *pubnub_version(void)
sveljko 0:389a44951c54 15 {
sveljko 0:389a44951c54 16 return PUBNUB_SDK_VERSION;
sveljko 0:389a44951c54 17 }
sveljko 0:389a44951c54 18
sveljko 0:389a44951c54 19
sveljko 0:389a44951c54 20 char const *pubnub_uname(void)
sveljko 0:389a44951c54 21 {
sveljko 0:389a44951c54 22 return PUBNUB_SDK_NAME "%2F" PUBNUB_SDK_VERSION;
sveljko 0:389a44951c54 23 }
sveljko 0:389a44951c54 24