]> 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 b98e911e3bacd0c376ef621d6c3219fcc361a618..dabed34cd4be3d289f175656a4a44bfdc7f84ab1 100644 (file)
@@ -1,13 +1,13 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                strutil.h                                 */
+/*                                 strutil.h                                 */
 /*                                                                           */
-/*                        String utility functions                          */
+/*                         String utility functions                          */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
 /* (C) 2001-2003 Ullrich von Bassewitz                                       */
-/*               Römerstrasse 52                                             */
+/*               Roemerstrasse 52                                            */
 /*               D-70794 Filderstadt                                         */
 /* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
 
 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) {
         memcpy (Dest, Source, DestSize-1);
-       Dest[DestSize-1] = '\0';
+        Dest[DestSize-1] = '\0';
     } else {
-       memcpy (Dest, Source, Len+1);
+        memcpy (Dest, Source, Len+1);
     }
     return Dest;
 }