FastLED 3.9.15
Loading...
Searching...
No Matches

◆ write() [8/11]

fl::size fl::basic_string::write ( const i64 & val)

Definition at line 324 of file basic_string.cpp.hpp.

324 {
325 char buf[64] = {0};
326 int len = fl::itoa64(val, buf, 10);
327 return write(buf, len);
328}
fl::size write(const fl::u8 *data, fl::size n) FL_NOEXCEPT
int itoa64(i64 value, char *sp, int radix)
Convert signed 64-bit integer to string buffer in given radix.