2 * Copyright (C) 2006-2011 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file stdin.h The standard in task structure. */
9 /** The task structure used for reading from stdin. */
11 /** The task structure. */
13 /** Stdin is always the root of a buffer tree. */
14 struct btr_node
*btrn
;
15 /** Use a buffer pool to minimize memcpy due to alignment problems. */
16 struct btr_pool
*btrp
;
19 void stdin_set_defaults(struct stdin_task
*sit
);