]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/libc-extension.hh
release: 0.1.50
[lilypond.git] / flower / include / libc-extension.hh
1 /*
2   libc-extension.hh -- declare some string.h extensions
3
4   source file of the flowerlib
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef LIBC_EXTENSION_HH
11 #define LIBC_EXTENSION_HH
12 #include "fproto.hh"
13
14 #include "config.hh"
15
16 #include <cstddef>
17
18 char* strnlwr (char* start_l ,int n);
19 char* strnupr (char* start_l, int n);
20
21 #if !HAVE_MEMMEM                // GNU extension.
22 Byte *memmem (Byte const * haystack, int haystack_len,
23              Byte const *needle, int needle_len);
24 #endif HAVE_MEMMEM
25
26 #if !HAVE_SNPRINTF              // GNU extension.
27 int snprintf (char *str, size_t n,
28               char const *format, ...);
29 #endif
30
31
32 Byte *memrchr (Byte const * p, int n, char c);
33 Byte *strrev (Byte* byte_l, int length_i);
34
35
36 #endif // LIBC_EXTENSION_HH