runtime: Copy runtime_printf from other Go library.
[gcc.git] / libgo / runtime / go-map-len.c
1 /* go-map-len.c -- return the length of a map.
2
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. */
6
7 #include <stddef.h>
8
9 #include "go-assert.h"
10 #include "map.h"
11
12 /* Return the length of a map. This could be done inline, of course,
13 but I'm doing it as a function for now to make it easy to change
14 the map structure. */
15
16 int
17 __go_map_len (struct __go_map *map)
18 {
19 if (map == NULL)
20 return 0;
21 __go_assert (map->__element_count == (uintptr_t) (int) map->__element_count);
22 return map->__element_count;
23 }