Azure IoT common library

Dependents:   STM32F746_iothub_client_sample_mqtt f767zi_mqtt iothub_client_sample_amqp iothub_client_sample_http ... more

Revision:
11:77df6d7e65ae
Parent:
7:1af47e3a19b6
Child:
13:920e00014ee3
--- a/base64.c	Fri Aug 26 12:59:40 2016 -0700
+++ b/base64.c	Fri Sep 09 13:38:26 2016 -0700
@@ -18,7 +18,7 @@
 #include "azure_c_shared_utility/base64.h"
 #include "azure_c_shared_utility/xlogging.h"
 
-static const char base64char[64] = {
+const char base64char[64] = {
     'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J',
     'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T',
     'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd',
@@ -28,12 +28,12 @@
     '8', '9', '+', '/'
 };
 
-static const char base64b16[16] = {
+const char base64b16[16] = {
     'A', 'E', 'I', 'M', 'Q', 'U', 'Y', 'c', 'g', 'k',
     'o', 's', 'w', '0', '4', '8'
 };
 
-static const char base64b8[4] = {
+const char base64b8[4] = {
     'A', 'Q', 'g', 'w'
 };