X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Finclude%2Flibc-extension.hh;h=9191d6476a2ecb29e1192e74e5c59abe9fe477f4;hb=87eedcd59f4082cb0841528ad5bc82cb1d1191e3;hp=06485629e78fd8c1408526a5c7e990fa4702d962;hpb=b5194a24d2f93819cec310193d5b404e674a66ae;p=lilypond.git diff --git a/flower/include/libc-extension.hh b/flower/include/libc-extension.hh index 06485629e7..9191d6476a 100644 --- a/flower/include/libc-extension.hh +++ b/flower/include/libc-extension.hh @@ -3,37 +3,53 @@ source file of the flowerlib - (c) 1997--2000 Han-Wen Nienhuys + (c) 1997--2007 Han-Wen Nienhuys */ - #ifndef LIBC_EXTENSION_HH #define LIBC_EXTENSION_HH -#include "flower-proto.hh" -#include "config.h" #include -#include +#include +using namespace std; + +#include "config.hh" + +char *strnlwr (char *start, int n); +char *strnupr (char *start, int n); + +#if ! HAVE_MEMMEM /* GNU extension. */ +void *memmem (void const *haystack, int haystack_len, + void const *needle, int needle_len); +#endif /* HAVE_MEMMEM */ + +#if ! HAVE_MEMRCHR +unsigned char *memrchr (unsigned char const *p, int n, char c); +#endif -char* strnlwr (char* start_l ,int n); -char* strnupr (char* start_l, int n); +#if ! HAVE_MEMREV +unsigned char *memrev (unsigned char *byte, int length_i); +#endif -#if !HAVE_MEMMEM // GNU extension. -void *memmem (void const * haystack, int haystack_len, - void const *needle, int needle_len); -#endif HAVE_MEMMEM +double my_round (double); -#if !HAVE_SNPRINTF // GNU extension. +/* namespace std { */ + +#if ! HAVE_SNPRINTF /* GNU extension. */ int snprintf (char *str, size_t n, char const *format, ...); + __attribute__ ((format (printf, 3, 4))); #endif -#if !HAVE_VSNPRINTF // GNU extension. +#if ! HAVE_VSNPRINTF /* GNU extension. */ 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); - +/* }; */ -#endif // LIBC_EXTENSION_HH +#endif /* LIBC_EXTENSION_HH */