2
PString.cpp - Lightweight printable string class
3
Copyright (c) 2009-2012 Mikal Hart. All right reserved.
5
This library is free software; you can redistribute it and/or
6
modify it under the terms of the GNU Lesser General Public
7
License as published by the Free Software Foundation; either
8
version 2.1 of the License, or (at your option) any later version.
10
This library is distributed in the hope that it will be useful,
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
Lesser General Public License for more details.
15
You should have received a copy of the GNU Lesser General Public
16
License along with this library; if not, write to the Free Software
17
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30
void PString::begin(char *buf, size_t size)
34
_cur = _buf + strlen(_buf);
37
#if defined(ARDUINO) && ARDUINO >= 100
38
size_t PString::write(uint8_t b)
40
void PString::write(uint8_t b)
43
if (_cur + 1 < _buf + _size)
47
#if defined(ARDUINO) && ARDUINO >= 100
52
#if defined(ARDUINO) && ARDUINO >= 100
57
int PString::format(char *str, ...)
60
va_start(argptr, str);
61
int ret = vsnprintf(_cur, _size - (_cur - _buf), str, argptr);