acme
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Pages Concepts
printf.h
1// printf.cpp
2
3// based on:
4// LIBCTINY - Matt Pietrek 2001
5// MSDN Magazine, January 2001
6
7// 08/12/06 (mv)
8
9#pragma once
10
11CLASS_DECL_ACME int printf_dup(const char *format, ...);
12CLASS_DECL_ACME int wprintf_dup(const ::wide_character *format, ...);
13CLASS_DECL_ACME int vprintf_dup(const char *format, va_list args);
14CLASS_DECL_ACME int vwprintf_dup(const ::wide_character *format, va_list args);
15
16#ifdef __APPLE__
17int ecvt_r(double, int, int *__restrict, int *__restrict, char * sz, size_t size); /* LEGACY */
18int fcvt_r(double, int, int *__restrict, int *__restrict, char * sz, size_t size); /* LEGACY */
19#endif
20
21
22