X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Finclude%2Flibc-extension.hh;h=906e64a4d49503a612e0a9fced9c43e065a472ee;hb=9458fa215af0294e9c38d62cc3a237a85fe50509;hp=56a7e7c13e217464c2d0618eedbc92c8b1b85b81;hpb=07d4d05df6479d58c3c5152c07d7c86b94ee98b4;p=lilypond.git diff --git a/flower/include/libc-extension.hh b/flower/include/libc-extension.hh index 56a7e7c13e..906e64a4d4 100644 --- a/flower/include/libc-extension.hh +++ b/flower/include/libc-extension.hh @@ -3,25 +3,25 @@ source file of the flowerlib - (c) 1997--1999 Han-Wen Nienhuys + (c) 1997--2004 Han-Wen Nienhuys */ - #ifndef LIBC_EXTENSION_HH #define LIBC_EXTENSION_HH -#include "fproto.hh" -#include "config.h" #include #include -char* strnlwr (char* start_l ,int n); -char* strnupr (char* start_l, int n); +#include "config.hh" +#include "flower-proto.hh" + +char* strnlwr (char* start ,int n); +char* strnupr (char* start, int n); #if !HAVE_MEMMEM // GNU extension. -Byte *memmem (Byte const * haystack, int haystack_len, - Byte const *needle, int needle_len); -#endif HAVE_MEMMEM +void *memmem (void const * haystack, int haystack_len, + void const *needle, int needle_len); +#endif /* HAVE_MEMMEM */ #if !HAVE_SNPRINTF // GNU extension. int snprintf (char *str, size_t n, char const *format, ...); @@ -31,9 +31,17 @@ int snprintf (char *str, size_t n, char const *format, ...); int vsnprintf (char *str, size_t, char const *format, va_list args); #endif +#ifndef isinf +#if !HAVE_ISINF // BSD extension +int isinf (double x); +#endif +#endif + Byte *memrchr (Byte const * p, int n, char c); -Byte *strrev (Byte* byte_l, int length_i); +Byte *strrev (Byte* byte, int length_i); + +double my_round (double); #endif // LIBC_EXTENSION_HH