blob: 7fff4590d635566754052ca5922a38f214cc4583 [file] [log] [blame]
njn36a20fa2005-06-03 03:08:39 +00001
2/*--------------------------------------------------------------------*/
3/*--- Printing libc stuff. pub_tool_libcprint.h ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
10 Copyright (C) 2000-2005 Julian Seward
11 jseward@acm.org
12
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
31#ifndef __PUB_TOOL_LIBCPRINT_H
32#define __PUB_TOOL_LIBCPRINT_H
33
34/* ---------------------------------------------------------------------
35 Basic printing
36 ------------------------------------------------------------------ */
37
38/* Note that they all output to the file descriptor given by the
39 * --log-fd/--log-file/--log-socket argument, which defaults to 2 (stderr).
40 * Hence no need for VG_(fprintf)().
41 */
sewardj45f4e7c2005-09-27 19:20:21 +000042extern UInt VG_(printf) ( const HChar *format, ... );
43extern UInt VG_(vprintf) ( const HChar *format, va_list vargs );
njn36a20fa2005-06-03 03:08:39 +000044/* too noisy ... __attribute__ ((format (printf, 1, 2))) ; */
sewardj45f4e7c2005-09-27 19:20:21 +000045
46extern UInt VG_(sprintf) ( Char* buf, const HChar* format, ... );
47extern UInt VG_(vsprintf) ( Char* buf, const HChar* format, va_list vargs );
48
49extern UInt VG_(snprintf) ( Char* buf, Int size,
50 const HChar *format, ... );
51extern UInt VG_(vsnprintf)( Char* buf, Int size,
52 const HChar *format, va_list vargs );
njn36a20fa2005-06-03 03:08:39 +000053
njn7a5915e2005-07-17 16:12:59 +000054// Percentify n/m with d decimal places. Includes the '%' symbol at the end.
njn5eaff2f2005-09-25 19:11:45 +000055// Right justifies in 'buf'.
56extern void VG_(percentify)(ULong n, ULong m, UInt d, Int n_buf, char buf[]);
njn856c54e2005-06-26 18:43:40 +000057
njn36a20fa2005-06-03 03:08:39 +000058/* ---------------------------------------------------------------------
59 Messages for the user
60 ------------------------------------------------------------------ */
61
njn3e114522005-06-11 03:31:09 +000062/* No, really. I _am_ that strange. */
63#define OINK(nnn) VG_(message)(Vg_DebugMsg, "OINK %d",nnn)
64
njn36a20fa2005-06-03 03:08:39 +000065/* Print a message prefixed by "??<pid>?? "; '?' depends on the VgMsgKind.
66 Should be used for all user output. */
67
68typedef
69 enum { Vg_UserMsg, /* '?' == '=' */
70 Vg_DebugMsg, /* '?' == '-' */
71 Vg_DebugExtraMsg, /* '?' == '+' */
72 Vg_ClientMsg /* '?' == '*' */
73 }
74 VgMsgKind;
75
76/* Send a single-part message. Appends a newline. */
77extern UInt VG_(message) ( VgMsgKind kind, const HChar* format, ... );
78extern UInt VG_(vmessage) ( VgMsgKind kind, const HChar* format, va_list vargs );
79
80#endif // __PUB_TOOL_LIBCPRINT_H
81
82/*--------------------------------------------------------------------*/
83/*--- end ---*/
84/*--------------------------------------------------------------------*/