Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef AVUTIL_AVSTRING_H
00022 #define AVUTIL_AVSTRING_H
00023
00024 #include <stddef.h>
00025
00035 int av_strstart(const char *str, const char *pfx, const char **ptr);
00036
00047 int av_stristart(const char *str, const char *pfx, const char **ptr);
00048
00061 char *av_stristr(const char *haystack, const char *needle);
00062
00078 size_t av_strlcpy(char *dst, const char *src, size_t size);
00079
00096 size_t av_strlcat(char *dst, const char *src, size_t size);
00097
00110 size_t av_strlcatf(char *dst, size_t size, const char *fmt, ...);
00111
00115 char *av_d2str(double d);
00116
00131 char *av_get_token(const char **buf, const char *term);
00132
00133 #endif