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_t.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 extern ssize_t strfmon_l(char* s, size_t maxsize, locale_t locale, const char* format, ...); 19 20 __END_DECLS 21 22 23 #endif /* _MONETARY_H_ */ 24