]> git.sur5r.net Git - cc65/blobdiff - src/common/strutil.c
Fixed LinuxDoc Tools issues in some verbatim blocks in the Atari document.
[cc65] / src / common / strutil.c
index 1cab51869cafc679d512397e9d7a0fdeedd5c3f4..dabed34cd4be3d289f175656a4a44bfdc7f84ab1 100644 (file)
@@ -7,7 +7,7 @@
 /*                                                                           */
 /*                                                                           */
 /* (C) 2001-2003 Ullrich von Bassewitz                                       */
-/*               Rö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) {