1 /* Unix pipe-to-self. This is a utility module for tests, not a test.
2 *
3 * Copyright © 2008-2010 Red Hat, Inc.
4 * Copyright © 2011 Nokia Corporation
5 *
6 * SPDX-License-Identifier: LGPL-2.1-or-later
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General
19 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 *
21 * Author: Simon McVittie <simon.mcvittie@collabora.co.uk>
22 */
23
24 #ifndef TEST_PIPE_UNIX_H
25 #define TEST_PIPE_UNIX_H
26
27 #include <gio/gio.h>
28
29 gboolean test_pipe (GInputStream **is,
30 GOutputStream **os,
31 GError **error);
32
33 gboolean test_bidi_pipe (GIOStream **left,
34 GIOStream **right,
35 GError **error);
36
37 #endif /* guard */