Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(194)

Side by Side Diff: base/strings/string_util.cc

Issue 1548993002: Switch to standard integer types in base/strings/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/strings/string_util.h ('k') | base/strings/string_util_posix.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/strings/string_util.h" 5 #include "base/strings/string_util.h"
6 6
7 #include <ctype.h> 7 #include <ctype.h>
8 #include <errno.h> 8 #include <errno.h>
9 #include <math.h> 9 #include <math.h>
10 #include <stdarg.h> 10 #include <stdarg.h>
11 #include <stdint.h> 11 #include <stdint.h>
12 #include <stdio.h> 12 #include <stdio.h>
13 #include <stdlib.h> 13 #include <stdlib.h>
14 #include <string.h> 14 #include <string.h>
15 #include <time.h> 15 #include <time.h>
16 #include <wchar.h> 16 #include <wchar.h>
17 #include <wctype.h> 17 #include <wctype.h>
18 18
19 #include <algorithm> 19 #include <algorithm>
20 #include <limits> 20 #include <limits>
21 #include <vector> 21 #include <vector>
22 22
23 #include "base/logging.h" 23 #include "base/logging.h"
24 #include "base/macros.h"
24 #include "base/memory/singleton.h" 25 #include "base/memory/singleton.h"
25 #include "base/strings/string_split.h" 26 #include "base/strings/string_split.h"
26 #include "base/strings/utf_string_conversion_utils.h" 27 #include "base/strings/utf_string_conversion_utils.h"
27 #include "base/strings/utf_string_conversions.h" 28 #include "base/strings/utf_string_conversions.h"
28 #include "base/third_party/icu/icu_utf.h" 29 #include "base/third_party/icu/icu_utf.h"
29 #include "build/build_config.h" 30 #include "build/build_config.h"
30 31
31 namespace base { 32 namespace base {
32 33
33 namespace { 34 namespace {
(...skipping 957 matching lines...) Expand 10 before | Expand all | Expand 10 after
991 } // namespace 992 } // namespace
992 993
993 size_t strlcpy(char* dst, const char* src, size_t dst_size) { 994 size_t strlcpy(char* dst, const char* src, size_t dst_size) {
994 return lcpyT<char>(dst, src, dst_size); 995 return lcpyT<char>(dst, src, dst_size);
995 } 996 }
996 size_t wcslcpy(wchar_t* dst, const wchar_t* src, size_t dst_size) { 997 size_t wcslcpy(wchar_t* dst, const wchar_t* src, size_t dst_size) {
997 return lcpyT<wchar_t>(dst, src, dst_size); 998 return lcpyT<wchar_t>(dst, src, dst_size);
998 } 999 }
999 1000
1000 } // namespace base 1001 } // namespace base
OLDNEW
« no previous file with comments | « base/strings/string_util.h ('k') | base/strings/string_util_posix.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698