number_formatting.h revision c7f5f8508d98d5952d42ed7648c2a8f30a4da156
1// Copyright (c) 2008 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef BASE_I18N_NUMBER_FORMATTING_H_
6#define BASE_I18N_NUMBER_FORMATTING_H_
7
8#include <string>
9
10#include "base/basictypes.h"
11#include "base/string16.h"
12
13namespace base {
14
15string16 FormatNumber(int64 number);
16
17}  // namespace base
18
19#endif  // BASE_I18N_NUMBER_FORMATTING_H_
20