comparison tree.h @ 392:d0f3bb6e367e libavutil

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents 2ed59b450840
children a54e20281de9
comparison
equal deleted inserted replaced
391:997894c973e2 392:d0f3bb6e367e
22 * @file tree.h 22 * @file tree.h
23 * A tree container. 23 * A tree container.
24 * @author Michael Niedermayer <michaelni@gmx.at> 24 * @author Michael Niedermayer <michaelni@gmx.at>
25 */ 25 */
26 26
27 #ifndef TREE_H 27 #ifndef FFMPEG_TREE_H
28 #define TREE_H 28 #define FFMPEG_TREE_H
29 29
30 struct AVTreeNode; 30 struct AVTreeNode;
31 31
32 /** 32 /**
33 * Finds an element. 33 * Finds an element.
53 * should make no assumptions that it's one or the other in the code. 53 * should make no assumptions that it's one or the other in the code.
54 */ 54 */
55 void *av_tree_insert(struct AVTreeNode **rootp, void *key, int (*cmp)(void *key, const void *b)); 55 void *av_tree_insert(struct AVTreeNode **rootp, void *key, int (*cmp)(void *key, const void *b));
56 void av_tree_destroy(struct AVTreeNode *t); 56 void av_tree_destroy(struct AVTreeNode *t);
57 57
58 #endif /* TREE_H */ 58 #endif /* FFMPEG_TREE_H */