* 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>
|
||||
|
||||
* libc/include/stdio.h (_ELIDABLE_INLINE): Move definition from here...
|
||||
|
|
|
@ -7,13 +7,13 @@ INDEX
|
|||
|
||||
ANSI_SYNOPSIS
|
||||
#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
|
||||
#include <stdlib.h>
|
||||
int wcstombs(<[s]>, <[pwc]>, <[n]>)
|
||||
const char *<[s]>;
|
||||
wchar_t *<[pwc]>;
|
||||
char *<[s]>;
|
||||
const wchar_t *<[pwc]>;
|
||||
size_t <[n]>;
|
||||
|
||||
DESCRIPTION
|
||||
|
|
Loading…
Reference in New Issue