1// Copyright 2012-present Oliver Eilhard. All rights reserved.
2// Use of this source code is governed by a MIT-license.
3// See http://olivere.mit-license.org/license.txt for details.
4
5package opencensus
6
7import (
8	"strconv"
9)
10
11func atoi64(s string) int64 {
12	i, _ := strconv.ParseInt(s, 10, 64)
13	return i
14}
15