Changed multi-line C comments into another style.
The left side doesn't look unbalanced.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
/* */
|
||||
/* */
|
||||
/* (C) 2001-2003 Ullrich von Bassewitz */
|
||||
/* R<EFBFBD>merstrasse 52 */
|
||||
/* Roemerstrasse 52 */
|
||||
/* D-70794 Filderstadt */
|
||||
/* EMail: uz@cc65.org */
|
||||
/* */
|
||||
@@ -49,9 +49,9 @@
|
||||
|
||||
char* StrCopy (char* Dest, size_t DestSize, const char* Source)
|
||||
/* Copy Source to Dest honouring the maximum size of the target buffer. In
|
||||
* constrast to strncpy, the resulting string will always be NUL terminated.
|
||||
* The function returns the pointer to the destintation buffer.
|
||||
*/
|
||||
** constrast to strncpy, the resulting string will always be NUL terminated.
|
||||
** The function returns the pointer to the destintation buffer.
|
||||
*/
|
||||
{
|
||||
size_t Len = strlen (Source);
|
||||
if (Len >= DestSize) {
|
||||
|
||||
Reference in New Issue
Block a user