diff options
author | Tom Rini <trini@konsulko.com> | 2021-07-28 09:51:09 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-28 09:51:09 -0400 |
commit | 22ecb12132a2de80a08654f139ff978176034c38 (patch) | |
tree | 87444c2cb41f82524b61135cf2be4b8dfb895ca4 /include | |
parent | 55efa84d0f523b0609d6947d232c000824315a68 (diff) | |
parent | 5ea605ce49387f01384b8e5938554586ff9d61df (diff) |
Merge branch '2021-07-28-setexpr-fmt-support'
- Add a new feature (and CONFIG option) to allow setexpr to take format
(%d, etc) arguments.
Diffstat (limited to 'include')
-rw-r--r-- | include/vsprintf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vsprintf.h b/include/vsprintf.h index 2290083eba..4016de6677 100644 --- a/include/vsprintf.h +++ b/include/vsprintf.h @@ -41,6 +41,7 @@ int strict_strtoul(const char *cp, unsigned int base, unsigned long *res); unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base); long simple_strtol(const char *cp, char **endp, unsigned int base); +long long simple_strtoll(const char *cp, char **endp, unsigned int base); /** * trailing_strtol() - extract a trailing integer from a string |