comparison src/audacious/tuple_compiler.h @ 4557:2eee464379dc

Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 19 May 2008 01:29:46 +0300
parents 5a0f5ef1de61
children 5f80f9d0e7ee
comparison
equal deleted inserted replaced
4556:332d2992e04c 4557:2eee464379dc
15 * along with this program. If not, see <http://www.gnu.org/licenses>. 15 * along with this program. If not, see <http://www.gnu.org/licenses>.
16 * 16 *
17 * The Audacious team does not consider modular code linking to 17 * The Audacious team does not consider modular code linking to
18 * Audacious or using our public API to be a derived work. 18 * Audacious or using our public API to be a derived work.
19 */ 19 */
20 #ifndef __AUDACIOUS_TUPLE_COMPILER_H__ 20 #ifndef AUDACIOUS_TUPLE_COMPILER_H
21 #define __AUDACIOUS_TUPLE_COMPILER_H__ 21 #define AUDACIOUS_TUPLE_COMPILER_H
22 22
23 #include <glib.h> 23 #include <glib.h>
24 #include <mowgli.h> 24 #include <mowgli.h>
25 #include "tuple.h" 25 #include "tuple.h"
26 26
106 106
107 gint tuple_formatter_print(FILE *f, gint *level, TupleEvalContext *ctx, TupleEvalNode *expr); 107 gint tuple_formatter_print(FILE *f, gint *level, TupleEvalContext *ctx, TupleEvalNode *expr);
108 TupleEvalNode *tuple_formatter_compile(TupleEvalContext *ctx, gchar *expr); 108 TupleEvalNode *tuple_formatter_compile(TupleEvalContext *ctx, gchar *expr);
109 gchar *tuple_formatter_eval(TupleEvalContext *ctx, TupleEvalNode *expr, Tuple *tuple); 109 gchar *tuple_formatter_eval(TupleEvalContext *ctx, TupleEvalNode *expr, Tuple *tuple);
110 110
111 #endif /* __AUDACIOUS_TUPLE_COMPILER_H__ */ 111 #endif /* AUDACIOUS_TUPLE_COMPILER_H */