1 #ifndef _MONETARY_H_ 2 #define _MONETARY_H_ 3 4 #include <stdarg.h> 5 6 #ifdef __cplusplus 7 extern "C" { 8 #endif 9 10 ssize_t strfmon(char *string, size_t maxSize, const char *format, ...); 11 ssize_t vstrfmon(char *string, size_t maxSize, const char *format, va_list args); 12 13 #ifdef __cplusplus 14 } 15 #endif 16 17 #endif /* _MONETARY_H_ */ 18