* libc/stdlib/wcstombs.c: Fix datatypes in documentation.
This commit is contained in:
parent
4fedce119c
commit
80317fe50f
|
@ -1,3 +1,7 @@
|
||||||
|
2009-04-04 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* libc/stdlib/wcstombs.c: Fix datatypes in documentation.
|
||||||
|
|
||||||
2009-04-04 Corinna Vinschen <corinna@vinschen.de>
|
2009-04-04 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* libc/include/stdio.h (_ELIDABLE_INLINE): Move definition from here...
|
* libc/include/stdio.h (_ELIDABLE_INLINE): Move definition from here...
|
||||||
|
|
|
@ -7,13 +7,13 @@ INDEX
|
||||||
|
|
||||||
ANSI_SYNOPSIS
|
ANSI_SYNOPSIS
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
int wcstombs(const char *<[s]>, wchar_t *<[pwc]>, size_t <[n]>);
|
int wcstombs(char *<[s]>, const wchar_t *<[pwc]>, size_t <[n]>);
|
||||||
|
|
||||||
TRAD_SYNOPSIS
|
TRAD_SYNOPSIS
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
int wcstombs(<[s]>, <[pwc]>, <[n]>)
|
int wcstombs(<[s]>, <[pwc]>, <[n]>)
|
||||||
const char *<[s]>;
|
char *<[s]>;
|
||||||
wchar_t *<[pwc]>;
|
const wchar_t *<[pwc]>;
|
||||||
size_t <[n]>;
|
size_t <[n]>;
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
|
Loading…
Reference in New Issue