summaryrefslogtreecommitdiff
path: root/include/vsprintf.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-01-15 07:34:46 -0500
committerTom Rini <trini@konsulko.com>2022-01-15 07:34:46 -0500
commit0962da92a1dfb210eef8c936e33862812fa1b208 (patch)
treec72fd2621d37fcff8b834f104ef83200d47fbebf /include/vsprintf.h
parent9b72d934c2f7d8ee894f87e082577743877eb76e (diff)
parent97f2a749d5126b2908dd282969c02c3632417c68 (diff)
Merge branch '2022-01-14-assorted-fixes'
- A number of fixes in various subsystems. This includes having the phy uclass track power-on and init counts as this should resolve some tricky functional problems on a number of platforms.
Diffstat (limited to 'include/vsprintf.h')
-rw-r--r--include/vsprintf.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/vsprintf.h b/include/vsprintf.h
index b4746301462..8bfafa0d33f 100644
--- a/include/vsprintf.h
+++ b/include/vsprintf.h
@@ -308,6 +308,14 @@ char *strmhz(char *buf, unsigned long hz);
void str_to_upper(const char *in, char *out, size_t len);
/**
+ * vsscanf - Unformat a buffer into a list of arguments
+ * @buf: input buffer
+ * @fmt: format of buffer
+ * @args: arguments
+ */
+int vsscanf(const char *inp, char const *fmt0, va_list ap);
+
+/**
* sscanf - Unformat a buffer into a list of arguments
* @buf: input buffer
* @fmt: formatting of buffer