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

Side by Side Diff: util/stdlib/strlcpy.h

Issue 804593002: Move string16 and char16 in to base:: (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: include roll of mini_chromium to 37bac7... Created 6 years 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 | « minidump/test/minidump_writable_test_util.cc ('k') | util/stdlib/strlcpy.cc » ('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 2014 The Crashpad Authors. All rights reserved. 1 // Copyright 2014 The Crashpad Authors. All rights reserved.
2 // 2 //
3 // Licensed under the Apache License, Version 2.0 (the "License"); 3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License. 4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at 5 // You may obtain a copy of the License at
6 // 6 //
7 // http://www.apache.org/licenses/LICENSE-2.0 7 // http://www.apache.org/licenses/LICENSE-2.0
8 // 8 //
9 // Unless required by applicable law or agreed to in writing, software 9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS, 10 // distributed under the License is distributed on an "AS IS" BASIS,
(...skipping 27 matching lines...) Expand all
38 //! \param[in] source A pointer to a `NUL`-terminated string of char16 data. The 38 //! \param[in] source A pointer to a `NUL`-terminated string of char16 data. The
39 //! `NUL` terminator must be a `NUL` value in a char16 unit, not just a 39 //! `NUL` terminator must be a `NUL` value in a char16 unit, not just a
40 //! single `NUL` byte. 40 //! single `NUL` byte.
41 //! \param[in] length The length of the \a destination buffer in char16 units, 41 //! \param[in] length The length of the \a destination buffer in char16 units,
42 //! not bytes. A maximum of \a `length - 1` char16 units from \a source will 42 //! not bytes. A maximum of \a `length - 1` char16 units from \a source will
43 //! be copied to \a destination. 43 //! be copied to \a destination.
44 //! 44 //!
45 //! \return The length of the \a source string in char16 units, not including 45 //! \return The length of the \a source string in char16 units, not including
46 //! its `NUL` terminator. When truncation occurs, the return value will be 46 //! its `NUL` terminator. When truncation occurs, the return value will be
47 //! equal to or greater than than the \a length parameter. 47 //! equal to or greater than than the \a length parameter.
48 size_t c16lcpy(char16* destination, const char16* source, size_t length); 48 size_t c16lcpy(base::char16* destination,
49 const base::char16* source,
50 size_t length);
49 51
50 } // namespace crashpad 52 } // namespace crashpad
51 53
52 #endif // CRASHPAD_UTIL_STDLIB_STRLCPY_H_ 54 #endif // CRASHPAD_UTIL_STDLIB_STRLCPY_H_
OLDNEW
« no previous file with comments | « minidump/test/minidump_writable_test_util.cc ('k') | util/stdlib/strlcpy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698