2 stringutil.cc -- generate non-inline members.
4 This should be in a separate file, because one can include the .icc
7 source file of the LilyPond music typesetter
9 (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl> */
12 #define memmove mymemmove
15 #ifdef STRING_UTILS_INLINED
16 #undef STRING_UTILS_INLINED
25 #include "string-handle.hh"
26 #include "string-data.hh"
28 #include "string-data.icc"
29 #include "string-handle.icc"
33 #include <sys/types.h>
36 mymemmove (void* dest
, void const* src
, size_t n
)
38 return memcpy (dest
, src
, n
);