* flower/libc-extension.cc: idem.
[lilypond.git] / flower / include / libc-extension.hh
blobecf6d25810a4ff1acf5236d322a1b705645df618
1 /*
2 libc-extension.hh -- declare some string.h extensions
4 source file of the flowerlib
6 (c) 1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
10 #ifndef LIBC_EXTENSION_HH
11 #define LIBC_EXTENSION_HH
13 #include "flower-proto.hh"
14 #include "config.h"
17 #include <cstddef>
18 #include <stdarg.h>
20 char* strnlwr (char* start ,int n);
21 char* strnupr (char* start, int n);
23 #if !HAVE_MEMMEM // GNU extension.
24 void *memmem (void const * haystack, int haystack_len,
25 void const *needle, int needle_len);
26 #endif /* HAVE_MEMMEM */
28 #if !HAVE_SNPRINTF // GNU extension.
29 int snprintf (char *str, size_t n, char const *format, ...);
30 #endif
32 #if !HAVE_VSNPRINTF // GNU extension.
33 int vsnprintf (char *str, size_t, char const *format, va_list args);
34 #endif
36 #ifndef isinf
37 #if !HAVE_ISINF // BSD extension
38 int isinf (double x);
39 #endif
40 #endif
43 Byte *memrchr (Byte const * p, int n, char c);
44 Byte *strrev (Byte* byte, int length_i);
47 double my_round (double);
49 #endif // LIBC_EXTENSION_HH