This is Webservice SDK for mbed. LPCXpresso1769/LPC1768/FRDM-K64F/LPC4088

Fork of libMiMic by Ryo Iizuka

Revision:
110:257739f9b31e
Parent:
12:efe841863fc8
--- a/core/NyLPC_cFifoBuffer.c	Wed Nov 19 14:45:17 2014 +0000
+++ b/core/NyLPC_cFifoBuffer.c	Sun Mar 15 09:33:38 2015 +0000
@@ -49,6 +49,14 @@
     memcpy(wp,i_data,i_data_len);
     i_inst->len+=i_data_len;
 }
+void* NyLPC_cFifoBuffer_prePush(NyLPC_TcFifoBuffer_t* i_inst,NyLPC_TUInt16 i_data_len)
+{
+    NyLPC_TUInt8* wp;
+    NyLPC_ArgAssert(NyLPC_cFifoBuffer_getSpace(i_inst)>=i_data_len);
+    wp=((NyLPC_TUInt8*)(i_inst->buf))+i_inst->len;
+    i_inst->len+=i_data_len;
+    return wp;
+}
 
 /**
  * See Header file.