Conseil : Recherchez des résultats uniquement en français. Vous pouvez indiquer votre langue de recherche sur la page Préférences.
Rappel concernant les règles de confidentialité de Google
Afin de nous conformer à la législation relative à la protection des données, nous vous demandons de bien vouloir prendre quelques instants pour étudier les principaux aspects de nos règles de confidentialité, qui s'appliquent à tous les services Google et décrivent la manière dont nous utilisons les données et les options qui sont à votre disposition. Nous vous prions de le faire aujourd'hui.
Consulter maintenant
Résultats de recherche
glibc/glob.c at master · lattera/glibc · GitHub
https://github.com/lattera/glibc/blob/master/posix/glob.cTraduire cette page
`errno' value from the failing call; if it returns non-zero. `glob' returns GLOB_ABORTED; if it returns zero, the error is ignored. If memory cannot be allocated for PGLOB, GLOB_NOSPACE is returned. Otherwise, `glob' returns zero. */. int. #ifdef GLOB_ATTRIBUTE. GLOB_ATTRIBUTE. #endif. glob (pattern, flags, errfunc, pglob).The GNU C Library: Calling Glob - GNU.org
www.gnu.org/s/libc/manual/html_node/Calling-Glob.htmlTraduire cette page
To return this vector, glob uses a special data type, glob_t , which is a structure. You pass glob the address of the structure, and it fills in the structure's fields to tell you about the results. Data Type: glob_t. This data type holds a pointer to a word vector. More precisely, it records both the address of the word vector and its size.The GNU C Library: Globbing - GNU.org
www.gnu.org/s/libc/manual/html_node/Globbing.htmlTraduire cette page
You could do this using fnmatch , by reading the directory entries one by one and testing each one with fnmatch . But that would be slow (and complex, since you would have to handle subdirectories by hand). The library provides a function glob to make this particular use of wildcards convenient. glob and the other symbols ...Page manuel de GLOB - Pages de manuel Linux
manpagesfr.free.fr/man/man3/glob.3.html
17 juil. 2008 - La fonction glob() recherche tous les chemins d'accès correspondant au motif pattern en utilisant les règles du shell (voir glob(7)). .... Les membres gl_pathc et gl_offs de la structure glob_t sont des size_t dans glibc 2.1, comme indiqué dans POSIX.2, mais sont déclarés sous forme de int dans libc4, libc5 et ...glob(3) - Linux manual page - man7.org
man7.org/linux/man-pages/man3/glob.3.htmlTraduire cette page
The glob() function searches for all the pathnames matching pattern according to the rules used by the shell (see glob(7)). No tilde expansion or .... NOTES top. The structure elements gl_pathc and gl_offs are declared as size_t in glibc 2.1, as they should be according to POSIX.2, but are declared as int in glibc 2.0.glob(3) - Linux man page
https://linux.die.net/man/3/globTraduire cette page
The glob() function searches for all the pathnames matching pattern according to the rules used by the shell (see glob(7)).lib/glibc-glob.c - Castaglia
www.castaglia.org/proftpd/doc/devel-guide/src/.../glibc-glob.c.htm...Traduire cette page
23 févr. 2006 - #ifndef __GNU_LIBRARY__ # undef GLOB_ERR # undef GLOB_MARK # undef GLOB_NOSORT # undef GLOB_DOOFFS # undef GLOB_NOCHECK # undef GLOB_APPEND # undef GLOB_NOESCAPE # undef GLOB_PERIOD #endif #research!rsc: Glob Matching Can Be Simple And Fast Too
https://research.swtch.com/globTraduire cette page
24 avr. 2017 - The netkit ftpd runs quickly on Linux because it relies on the host C library's glob function. If run on BSD, the netkit ftpd would take exponential time. ProFTPD ships a copy of the glibc glob , so it should run quickly even on BSD systems. Ironically, Pure-FTPd and tnftpd take exponential time on Linux ...glob.h source code [glibc/posix/glob.h] - Woboq Code Browser
https://code.woboq.org/userspace/glibc/posix/glob.h.htmlTraduire cette page
38, /* Bits set in the FLAGS argument to `glob'. */. 39, #define GLOB_ERR (1 << 0Glibc glob.h - GNU Gnulib
www.hep.by/gnu/gnulib/Glibc-glob_002eh.htmlTraduire cette page
Next: Glibc gnu/libc-version.h, Previous: Glibc getopt.h, Up: Glibc Function Substitutes. 11.23 Glibc Extensions to <glob.h>. glob_pattern_p.