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 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'?
On some older implementations, getopt() was declared in<stdio.h>.
Sur certaines anciennes implémentations, getopt() était déclarée dans<stdio.h>.
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.
The getopt() function returns the option character if the option was found successfully,':' if there was a missing parameter for one of the options,'? '
La fonction getopt() renvoie le caractère de l'option s'il en trouve une,':' s'il manque un paramètre pour une option,'? '
By default, getopt() permutes the contents of argv as it scans, so that eventually all the nonoptions are at the end.
Par défaut, getopt() permute les éléments de argv au fur et à mesure de son analyse, ainsi tous les arguments éventuels ne constituant pas des options se trouvent à la fin.
If such a character is followed by a colon, the option requires an argument, so getopt places a pointer to the following text in the same argv-element, or the text of the following argv-element, in optarg.
Si un de ces caractères est suivi par un double-point, l'option nécessite un argument supplémentaire, et getopt placera un pointeur sur le texte correspondant de argv dans optarg. Deux doubles-points signifient qu'une option prend un argument optionnel.