Update api.md

This commit is contained in:
Victor Zverovich 2024-07-10 15:50:10 -07:00 committed by GitHub
parent 13038f37e8
commit 92cdbbae06
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,7 @@ The {fmt} library API consists of the following components:
- [`fmt/os.h`](#os-api): system APIs - [`fmt/os.h`](#os-api): system APIs
- [`fmt/ostream.h`](#ostream-api): `std::ostream` support - [`fmt/ostream.h`](#ostream-api): `std::ostream` support
- [`fmt/args.h`](#args-api): dynamic argument lists - [`fmt/args.h`](#args-api): dynamic argument lists
- [`fmt/printf.h`](#printf-api): `printf` formatting - [`fmt/printf.h`](#printf-api): safe `printf`
- [`fmt/xchar.h`](#xchar-api): optional `wchar_t` support - [`fmt/xchar.h`](#xchar-api): optional `wchar_t` support
All functions and types provided by the library reside in namespace `fmt` All functions and types provided by the library reside in namespace `fmt`
@ -609,7 +609,7 @@ that can be used to construct format argument lists dynamically.
::: dynamic_format_arg_store ::: dynamic_format_arg_store
<a id="printf-api"></a> <a id="printf-api"></a>
## `printf` Formatting ## Safe `printf`
The header `fmt/printf.h` provides `printf`-like formatting The header `fmt/printf.h` provides `printf`-like formatting
functionality. The following functions use [printf format string functionality. The following functions use [printf format string