1/**
2 * \file
3 * \brief Set of default filters for terminal client library.
4 */
5
6/*
7 * Copyright (c) 2012, ETH Zurich.
8 * All rights reserved.
9 *
10 * This file is distributed under the terms in the attached LICENSE file.
11 * If you do not find this file, copies can be found by writing to:
12 * ETH Zurich D-INFK, CAB F.78, Universitaetstrasse 6, CH-8092 Zurich,
13 * Attn: Systems Group.
14 */
15
16#ifndef LIBTERM_CLIENT_DEFAULT_FILTERS_H
17#define LIBTERM_CLIENT_DEFAULT_FILTERS_H
18
19#include <stddef.h>
20
21void term_filter_cr2lf(char **data, size_t *length);
22void term_filter_ctrlhat(char **data, size_t *length);
23void term_filter_lf2crlf(char **data, size_t *length);
24
25#endif // LIBTERM_CLIENT_DEFAULT_FILTERS_H
26