printf: add our own printf implementation for debug logging
[platform/upstream/gstreamer.git] / gst / printf / printf.h
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 2003  Matthias Clasen
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 #ifndef __GNULIB_PRINTF_H__
20 #define __GNULIB_PRINTF_H__
21
22 #include <stdarg.h>
23 #include <stdio.h>
24
25 int __gst_printf    (char const *format,
26                      ...);
27
28 int __gst_fprintf   (FILE        *file,
29                      char const *format,
30                      ...);
31
32 int __gst_sprintf   (char       *string,
33                      char const *format,
34                      ...);
35
36 int __gst_snprintf  (char       *string,
37                      size_t       n,
38                      char const *format,
39                      ...);
40
41 int __gst_vprintf   (char const *format,
42                      va_list      args);
43
44 int __gst_vfprintf  (FILE        *file,
45                      char const *format,
46                      va_list      args);
47
48 int __gst_vsprintf  (char       *string,
49                      char const *format,
50                      va_list      args);
51
52 int __gst_vsnprintf (char       *string,
53                      size_t       n,
54                      char const *format,
55                      va_list      args);
56
57 int __gst_vasprintf (char       **result,
58                      char const *format,
59                      va_list      args);
60
61
62 #endif /* __GNULIB_PRINTF_H__ */