2009-08-10 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/wcstombs.c: Change documentation to specify size_t return type instead of int.
This commit is contained in:
parent
019fc8d880
commit
5f8c90bbc0
|
@ -1,3 +1,8 @@
|
||||||
|
2009-08-10 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
|
* libc/stdlib/wcstombs.c: Change documentation to specify size_t
|
||||||
|
return type instead of int.
|
||||||
|
|
||||||
2009-07-29 Jeff Johnston <jjohnstn@redhat.com>
|
2009-07-29 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* libc/stdlib/a64l.c: Fix to use 'a' instead of 'A' in calculation
|
* libc/stdlib/a64l.c: Fix to use 'a' instead of 'A' in calculation
|
||||||
|
|
|
@ -7,11 +7,11 @@ INDEX
|
||||||
|
|
||||||
ANSI_SYNOPSIS
|
ANSI_SYNOPSIS
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
int wcstombs(char *<[s]>, const wchar_t *<[pwc]>, size_t <[n]>);
|
size_t 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]>)
|
size_t wcstombs(<[s]>, <[pwc]>, <[n]>)
|
||||||
char *<[s]>;
|
char *<[s]>;
|
||||||
const wchar_t *<[pwc]>;
|
const wchar_t *<[pwc]>;
|
||||||
size_t <[n]>;
|
size_t <[n]>;
|
||||||
|
|
Loading…
Reference in New Issue