Mercurial > hg > octave-nkf > gnulib-hg
view lib/di-set.h @ 16846:a80d21de5373
system-quote, execute, spawn-pipe: Escape '?' on Windows.
* lib/system-quote.c (SHELL_SPECIAL_CHARS, CMD_SPECIAL_CHARS): Add the
'?' character.
* lib/w32spawn.h (SHELL_SPECIAL_CHARS): Likewise.
* tests/test-system-quote-main.c (check_all): Check also strings like
"??????????".
Reported by Eli Zaretskii <eliz@gnu.org>.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Fri, 11 May 2012 01:39:04 +0200 |
parents | 724011432f7b |
children |
line wrap: on
line source
#ifndef _GL_DI_SET_H # define _GL_DI_SET_H # include <sys/types.h> # undef _GL_ATTRIBUTE_NONNULL # if __GNUC__ == 3 && __GNUC_MINOR__ >= 3 || 3 < __GNUC__ # define _GL_ATTRIBUTE_NONNULL(m) __attribute__ ((__nonnull__ (m))) # else # define _GL_ATTRIBUTE_NONNULL(m) # endif struct di_set *di_set_alloc (void); int di_set_insert (struct di_set *, dev_t, ino_t) _GL_ATTRIBUTE_NONNULL (1); void di_set_free (struct di_set *) _GL_ATTRIBUTE_NONNULL (1); int di_set_lookup (struct di_set *dis, dev_t dev, ino_t ino) _GL_ATTRIBUTE_NONNULL (1); #endif