Vertaling van "vfprintf" in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
La fonction vfscanf() est analogue à vfprintf(3) et lit ses arguments depuis le flux pointé par stream en utilisant une liste variable d'arguments pointeurs, consultez stdarg(3).
The vfscanf() function is analogous to vfprintf(3) and reads input from the stream pointer stream using a variable argument list of pointers (see stdarg(3).
vfprintf - Écrit une chaîne formatée dans un flux
vfprintf - Write a formatted string to a stream
Agit de la même façon que fprintf() excepté que vfprintf() accepte un tableau d'arguments, plutôt qu'un nombre variant d'arguments.
Operates as printf() but accepts an array of arguments, rather than a variable number of arguments. Parameters format
Andere resultaten
La faille est provoquée à cause de l'absence d'un contrôle de la taille des tampons d'entrée, lorsque l'on utilise vsprintf ou sprintf.
The vulnerability is caused by not bounds checking the input buffers, when using vsprintf or sprintf.
Dans la glibc, il existe des fonctions dprintf() et vdprintf() qui affichent leur résultat sur un descripteur de fichier plutôt qu'un flux.
In glibc there are functions dprintf() and vdprintf() that print to a file descriptor instead of a stream.
vsprintf() fonctionne comme sprintf(), mais accepte un tableau comme argument, au lieu d'une liste d'arguments.
Operates as fprintf() but accepts an array of arguments, rather than a variable number of arguments. Parametri handle
Les fonctions fwprintf() et vfwprintf() réalisent la mise en forme de chaînes de caractères larges en vue d'une écriture dans le fichier stream.
The fwprintf() and vfwprintf() functions perform wide-character output to stream.
Cependant, les normes indiquent explicitement que le résultat n'est pas défini si les tampons de source et de destination se recouvrent lors d'un appel à sprintf(), snprintf(), vsprintf() et vsnprintf().
However, the standards explicitly note that the results are undefined if source and destination buffers overlap when calling sprintf(), snprintf(), vsprintf(), and vsnprintf().
swprintf() et vswprintf() prennent un argument maxlen, au contraire de sprintf() et vsprintf().
swprintf() and vswprintf() take a maxlen argument, sprintf(3) and vsprintf(3) do not.
Comme sprintf() et vsprintf() ne font pas de suppositions sur la longueur des chaînes, le programme appelant doit s'assurer de ne pas déborder l'espace d'adressage. C'est souvent difficile.
Because sprintf() and vsprintf() assume an arbitrarily long string, callers must be careful not to overflow the actual space; this is often impossible to assure.
Les fonctions wprintf() et vwprintf() réalisent le traitement et la sortie de chaînes de caractères larges sur stdout. stdout ne doit pas être un périphérique spécial orienté caractères (voir la fonction fwide() pour plus d'informations).
It performs formatted output of wide characters. The wprintf() and vwprintf() functions perform wide-character output to stdout. stdout must not be byte oriented; see fwide(3) for more information.
Le format est identique au format de la fonction du langage C fprintf.
The format string is identical to that of the C language fprintf function.
Les fscanf et fprintf commandes se comportent comme des fonctions C scanf et printf.
The fscanf and fprintf commands behave like C scanf and printf functions.