| 633 | /// @endcode |
| 634 | template<typename... Args> |
| 635 | void printf(const char* format, const Args&... args) FL_NOEXCEPT { |
| 636 | sstream stream; |
| 637 | printf_detail::format_impl(stream, format, args...); |
| 638 | fl::print(stream.str().c_str()); |
| 639 | } |
| 640 | |
| 641 | /// @brief Snprintf-like formatting function that writes to a buffer |
| 642 | /// @param buffer Output buffer to write formatted string to |