blob: e72de69f030f161f39f82091396cb5dcd9b0ef98 (
plain)
1
2
3
4
5
6
7
8
|
/* SPDX-License-Identifier: GPL-2.0 */
/** \file stdin.h The stdin task and buffer tree node. */
struct stdin_task *stdin_new(void);
void stdin_register(struct stdin_task *sit, struct sched *s);
struct btr_node *stdin_btrn(const struct stdin_task *sit);
void stdin_free(struct stdin_task *sit);
|