1 /* go-print.c -- support for the go print statement.
3 Copyright 2009 The Go Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file. */
14 #include "go-string.h"
15 #include "interface.h"
17 /* This implements the various little functions which are called by
18 the predeclared functions print/println/panic/panicln. */
21 __go_print_empty_interface (struct __go_empty_interface e
)
23 runtime_printf ("(%p,%p)", e
.__type_descriptor
, e
.__object
);
27 __go_print_interface (struct __go_interface i
)
29 runtime_printf ("(%p,%p)", i
.__methods
, i
.__object
);
33 __go_print_slice (struct __go_open_array val
)
35 runtime_printf ("[%d/%d]", val
.__count
, val
.__capacity
);
36 runtime_printpointer (val
.__values
);