xref: /haiku/headers/posix/monetary.h (revision 1deede7388b04dbeec5af85cae7164735ea9e70d)
1 /*
2  * Copyright 2010-2012 Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _MONETARY_H_
6 #define _MONETARY_H_
7 
8 
9 #include <locale.h>
10 #include <stddef.h>
11 #include <sys/cdefs.h>
12 #include <sys/types.h>
13 
14 
15 __BEGIN_DECLS
16 
17 extern ssize_t strfmon(char* s, size_t maxsize, const char* format, ...);
18 
19 __END_DECLS
20 
21 
22 #endif /* _MONETARY_H_ */
23