diff options
Diffstat (limited to 'libs/ffvpx/libavutil/avstring.h')
-rw-r--r-- | libs/ffvpx/libavutil/avstring.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libs/ffvpx/libavutil/avstring.h b/libs/ffvpx/libavutil/avstring.h index 04d269564..37dd4e2da 100644 --- a/libs/ffvpx/libavutil/avstring.h +++ b/libs/ffvpx/libavutil/avstring.h @@ -401,6 +401,12 @@ int av_utf8_decode(int32_t *codep, const uint8_t **bufp, const uint8_t *buf_end, int av_match_list(const char *name, const char *list, char separator); /** + * See libc sscanf manual for more information. + * Locale-independent sscanf implementation. + */ +int av_sscanf(const char *string, const char *format, ...); + +/** * @} */ |