X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Finclude%2Flibc-extension.hh;h=51e5b20373131a3373509218081e0a9c1e40627b;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=5d63e995d5046c7cda09962a045b407599dbfa24;hpb=07dc00d6c83be5b05f5ec16f1ed36b1cf41b885c;p=lilypond.git diff --git a/flower/include/libc-extension.hh b/flower/include/libc-extension.hh index 5d63e995d5..51e5b20373 100644 --- a/flower/include/libc-extension.hh +++ b/flower/include/libc-extension.hh @@ -3,42 +3,53 @@ source file of the flowerlib - (c) 1997--2000 Han-Wen Nienhuys + (c) 1997--2008 Han-Wen Nienhuys */ - #ifndef LIBC_EXTENSION_HH #define LIBC_EXTENSION_HH -#include "flower-proto.hh" -#include "config.h" #include -#include +#include +using namespace std; -char* strnlwr (char* start_l ,int n); -char* strnupr (char* start_l, int n); +#include "config.hh" -#if !HAVE_MEMMEM // GNU extension. -void *memmem (void const * haystack, int haystack_len, - void const *needle, int needle_len); -#endif HAVE_MEMMEM +char *strnlwr (char *start, int n); +char *strnupr (char *start, int n); -#if !HAVE_SNPRINTF // GNU extension. -int snprintf (char *str, size_t n, char const *format, ...); +#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 -#if !HAVE_VSNPRINTF // GNU extension. -int vsnprintf (char *str, size_t, char const *format, va_list args); +#if ! HAVE_MEMREV +unsigned char *memrev (unsigned char *byte, int length_i); #endif +double my_round (double); -#if !HAVE_ISINF // BSD extension -int isinf (double x); +/* 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. */ +int vsnprintf (char *str, size_t, char const *format, va_list args); #endif -Byte *memrchr (Byte const * p, int n, char c); -Byte *strrev (Byte* byte_l, int length_i); +#ifndef isinf +#if ! HAVE_ISINF /* BSD extension. */ +int isinf (double x); +#endif +#endif +/* }; */ -#endif // LIBC_EXTENSION_HH +#endif /* LIBC_EXTENSION_HH */