| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |