.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH _itoa 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fB_itoa\fR (NTDLL.@) .SH SYNOPSIS char * _itoa ( int \fIvalue\fR, char* \fIstr\fR, int \fIradix\fR ) .SH PARAMS \fIvalue\fR \fB[In]\fR Value to be converted. .PP \fIstr\fR \fB[Out]\fR Destination for the converted \fIvalue\fR. .PP \fIradix\fR \fB[In]\fR Number base for conversion. .PP .SH DESCRIPTION .PP Converts an integer to a string. .SH RETURNS .PP \fIstr\fR. .SH NOTES .PP \fB-\fR Converts \fIvalue\fR to a \fB'\0'\fR terminated string which is copied to \fIstr\fR. .PP \fB-\fR The maximum length of the copied \fIstr\fR is \fB33\fR bytes. If \fIradix\fR is \fB10\fR and \fIvalue\fR is negative, the \fIvalue\fR is converted with sign. .PP \fB-\fR Does not check if \fIradix\fR is in the range of \fB2\fR to \fB36.\fR .PP \fB-\fR If \fIstr\fR is \fBNULL\fR it crashes, as the native function does. .SH IMPLEMENTATION .PP Declared in \fB"tchar.h"\fR. .PP Implemented in \fB"dlls/ntdll/string.c"\fR.