#define AVUTIL_AVSTRING_H
#include <stddef.h>
+#include "mem.h"
/**
* Return non-zero if pfx is a prefix of str. If it is, *ptr is set to
*/
size_t av_strlcatf(char *dst, size_t size, const char *fmt, ...);
+/**
+ * Convert a number to a av_malloced string.
+ */
+char *av_d2str(double d);
+
#endif /* AVUTIL_AVSTRING_H */