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