comparison avstring.h @ 392:d0f3bb6e367e libavutil

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents 997894c973e2
children bd4052d9050c
comparison
equal deleted inserted replaced
391:997894c973e2 392:d0f3bb6e367e
16 * You should have received a copy of the GNU Lesser General Public 16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software 17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */ 19 */
20 20
21 #ifndef AVUTIL_AVSTRING_H 21 #ifndef FFMPEG_AVSTRING_H
22 #define AVUTIL_AVSTRING_H 22 #define FFMPEG_AVSTRING_H
23 23
24 #include <stddef.h> 24 #include <stddef.h>
25 25
26 /** 26 /**
27 * Return non-zero if pfx is a prefix of str. If it is, *ptr is set to 27 * Return non-zero if pfx is a prefix of str. If it is, *ptr is set to
85 * @return the length of the string that would have been generated 85 * @return the length of the string that would have been generated
86 * if enough space had been available 86 * if enough space had been available
87 */ 87 */
88 size_t av_strlcatf(char *dst, size_t size, const char *fmt, ...); 88 size_t av_strlcatf(char *dst, size_t size, const char *fmt, ...);
89 89
90 #endif /* AVUTIL_AVSTRING_H */ 90 #endif /* FFMPEG_AVSTRING_H */