haiku/headers/private/locale/monetary.h
Oliver Tappe 41426d9bac * Moved three locale-related headers back into a safe place (where no
software looking for them will find them) as a temporary fix for #4747.
  In the long run, the functions declared in these headers should be
  implemented by means of ICU and then the headers shall be made public again.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33575 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-10-13 17:15:49 +00:00

18 lines
314 B
C

#ifndef _MONETARY_H_
#define _MONETARY_H_
#include <stdarg.h>
#ifdef __cplusplus
extern "C" {
#endif
ssize_t strfmon(char *string, size_t maxSize, const char *format, ...);
ssize_t vstrfmon(char *string, size_t maxSize, const char *format, va_list args);
#ifdef __cplusplus
}
#endif
#endif /* _MONETARY_H_ */