]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/stringutil.cc
*** empty log message ***
[lilypond.git] / flower / stringutil.cc
index f8332672f01c481e0c72ea99fd88b1d822a3c32f..0e42eac4e4eae161cf7ef091837e7dd59b656b97 100644 (file)
@@ -1,14 +1,14 @@
 /*
-  stringutil.cc -- generate non-inline members. 
+  stringutil.cc -- generate non-inline members.
 
   This should be in a separate file, because one can include the .icc
   only once.
 
   source file of the LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl> */
+  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl> */
 
-#ifdef STRING_DEBUG 
+#ifdef STRING_DEBUG
 #define memmove mymemmove
 #endif
 
@@ -22,9 +22,9 @@
 
 #define INLINE
 
-#include "string-handle.hh"
 #include "string-data.hh"
 #include "string.hh"
+
 #include "string-data.icc"
 #include "string-handle.icc"
 #include "string.icc"
@@ -32,9 +32,9 @@
 #ifdef STRING_DEBUG
 #include <sys/types.h>
 #include <memory.h>
-void
-mymemmove (void* dest, void const* src, size_t n)
+void *
+mymemmove (void *dest, void const *src, size_t n)
 {
-       return memcpy (dest, src, n); 
+  return memcpy (dest, src, n);
 }
 #endif