diff options
| author | Tom Rini <[email protected]> | 2020-08-14 15:48:56 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-08-14 15:48:56 -0400 |
| commit | c0192950dfcd82035a928de32c24335f3d2c0f7a (patch) | |
| tree | 0836caec6551ce8b277714c95e7bf0003ab64311 /include/vsprintf.h | |
| parent | fe5c777df26dab302cbb26d5f05655e27b714987 (diff) | |
| parent | 698383fe8ea3a755f93e9e9446a5560e040c6b56 (diff) | |
Merge branch '2020-08-14-assorted-updates'
- Xen guest and some paravirt driver support.
- Aspeed SoC updates
- Broadcom IPROC PCIe RC driver
Diffstat (limited to 'include/vsprintf.h')
| -rw-r--r-- | include/vsprintf.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/vsprintf.h b/include/vsprintf.h index d9fb68add0c..2290083eba4 100644 --- a/include/vsprintf.h +++ b/include/vsprintf.h @@ -234,4 +234,12 @@ char *strmhz(char *buf, unsigned long hz); */ void str_to_upper(const char *in, char *out, size_t len); +/** + * sscanf - Unformat a buffer into a list of arguments + * @buf: input buffer + * @fmt: formatting of buffer + * @...: resulting arguments + */ +int sscanf(const char *buf, const char *fmt, ...); + #endif |
