mirror of
https://review.haiku-os.org/haiku
synced 2025-01-20 21:41:28 +01:00
75f1522155
work to do, but it's about time to give this code more exposure. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33176 a95241bf-73f2-0310-859d-f6bbb57e9c96
18 lines
314 B
C
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_ */
|