snprintf.hpp 592 B

12345678910111213141516171819202122232425262728
  1. #ifndef BOOST_SYSTEM_DETAIL_SNPRINTF_HPP_INCLUDED
  2. #define BOOST_SYSTEM_DETAIL_SNPRINTF_HPP_INCLUDED
  3. // Copyright 2018, 2020, 2021 Peter Dimov
  4. //
  5. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  6. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. // See library home page at http://www.boost.org/libs/system
  9. #include <cstdio>
  10. //
  11. namespace boost
  12. {
  13. namespace system
  14. {
  15. namespace detail
  16. {
  17. using std::snprintf;
  18. } // namespace detail
  19. } // namespace system
  20. } // namespace boost
  21. #endif // #ifndef BOOST_SYSTEM_DETAIL_SNPRINTF_HPP_INCLUDED