acme
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
Functions
Enumerations
Enumerator
Concepts
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
w
z
~
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
w
z
~
Variables
Typedefs
Files
File List
File Members
All
Functions
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Pages
Concepts
Loading...
Searching...
No Matches
platform
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
11
CLASS_DECL_ACME
int
printf_dup(
const
char
*format, ...);
12
CLASS_DECL_ACME
int
wprintf_dup(const ::wide_character *format, ...);
13
CLASS_DECL_ACME
int
vprintf_dup(
const
char
*format, va_list args);
14
CLASS_DECL_ACME
int
vwprintf_dup(const ::wide_character *format, va_list args);
15
16
#ifdef __APPLE__
17
int
ecvt_r(
double
,
int
,
int
*__restrict,
int
*__restrict,
char
* sz,
size_t
size);
/* LEGACY */
18
int
fcvt_r(
double
,
int
,
int
*__restrict,
int
*__restrict,
char
* sz,
size_t
size);
/* LEGACY */
19
#endif
20
21
22
Generated by
1.13.2