Vertaling van "getopt" in Frans
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.
getopt and some other -liberty functions aren't in libc.
getopt et d'autres fonctions -liberty ne sont pas dans libc.
Parameter longopts is available on all systems. getopt
Le paramètre longopts est disponible sur tous les systèmes. getopt
getopt() now accepts "long options" on all platforms.
getopt() accepte des options longues sur toutes les plate-formes.
For more information about this structure, I strongly suggest you read 'man 3 getopt'.
Pour plus d'informations sur cette structure, je te recommande fortement de lire 'man 3 getopt'.
If an option was successfully found, then getopt() returns the option character.
Si une option est trouvée, getopt() renvoie le caractère de l'option.
If all command-line options have been parsed, then getopt() returns -1.
Si toutes les options de la ligne de commande ont été lues, alors getopt() renvoie -1.
If getopt() is called repeatedly, it returns successively each of the option characters from each of the option elements.
Si getopt() est appelée à plusieurs reprises, elle renverra successivement chaque caractère de chaque option.
If getopt() finds an option character in argv that was not included in optstring, or if it detects a missing option argument, it returns'? '
Si getopt() trouve dans argv un caractère d'option non inclus dans optstring, ou s'il manque un argument d'option, l'appel renvoie ?
If getopt() does not recognize an option character, it prints an error message to stderr, stores the character in optopt, and returns'?
Si getopt() ne reconnaît pas un caractère d'option, il affiche un message d'erreur sur la sortie standard stderr, stocke le caractère dans optopt, et renvoie'?
If there are no more option characters, getopt() returns -1.
S'il n'y a plus de caractères d'option, getopt() renvoie -1.
On some older implementations, getopt() was declared in <stdio.h>.
Sur certaines anciennes implémentations, getopt() était déclarée dans <stdio.h>.
Added support for optional values (specified with":: "). getopt
Ajout du support des valeurs optionnelles (spécifié par":: "). getopt
If the first character of optstring is a colon (:'), then getopt() returns:' instead of' to indicate a missing option argument.
Si le premier caractère de optstring est un deux-points (':'), alors getopt() renvoie':' plutôt que'?' pour indiquer un argument d'option manquant.