mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
332 B
22 lines
332 B
|
14 years ago
|
#ifndef _MONETARY_H
|
||
|
|
#define _MONETARY_H
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#define __NEED_ssize_t
|
||
|
|
#define __NEED_size_t
|
||
|
|
#define __NEED_locale_t
|
||
|
|
|
||
|
|
#include <bits/alltypes.h>
|
||
|
|
|
||
|
|
ssize_t strfmon(char *, size_t, const char *, ...);
|
||
|
|
ssize_t strfmon_l(char *, size_t, locale_t, const char *, ...);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|