add fallocate (nonstandardized) function
[musl] / include / monetary.h
1 #ifndef _MONETARY_H
2 #define _MONETARY_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 #if __STDC_VERSION__ >= 199901L
9 #define __restrict restrict
10 #elif !defined(__GNUC__)
11 #define __restrict
12 #endif
13
14 #define __NEED_ssize_t
15 #define __NEED_size_t
16 #define __NEED_locale_t
17
18 #include <bits/alltypes.h>
19
20 ssize_t strfmon(char *__restrict, size_t, const char *__restrict, ...);
21 ssize_t strfmon_l(char *__restrict, size_t, locale_t, const char *__restrict, ...);
22
23 #ifdef __cplusplus
24 }
25 #endif
26
27 #endif