rwblinn Well-Known Member Licensed User Longtime User Feb 14, 2017 #1 Hi, in rCore.h CRLF is defined as B4X: #define /*StringLiteral CRLF;*/ Common_CRLF "\r\n" which then can be used, f.e. with asyncstreams by astreams.write(CRLF). Question With InlineC how to define and use LF "\n"? to be able to astreams.write(LF).
Hi, in rCore.h CRLF is defined as B4X: #define /*StringLiteral CRLF;*/ Common_CRLF "\r\n" which then can be used, f.e. with asyncstreams by astreams.write(CRLF). Question With InlineC how to define and use LF "\n"? to be able to astreams.write(LF).
Erel B4X founder Staff member Licensed User Longtime User Feb 14, 2017 #2 B4X: astreams.Write(Array As Byte(10)) 'or Dim LF() As Byte = Array As Byte(10)) Upvote 0
rwblinn Well-Known Member Licensed User Longtime User Feb 14, 2017 #3 Thanks - so simple - overlooked that Upvote 0