bash_completion: Fix sender completion.
[paraslash.git] / stdout.h
1 /*
2  * Copyright (C) 2006-2010 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file stdout.h Writing to stdout via buffer trees. */
8
9 /**
10  * The task structure used for writing to stdout.
11  *
12  * This is used by para_recv, para_filter and para_client.
13  */
14 struct stdout_task {
15         /** The task structure used by the scheduler. */
16         struct task task;
17         /** Stdout is always a leaf node in the buffer tree. */
18         struct btr_node *btrn;
19 };
20
21 void stdout_set_defaults(struct stdout_task *sot);