1/**
2 * \file
3 * \brief Set of default triggers 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, Universitaetstr. 6, CH-8092 Zurich,
13 * Attn: Systems Group.
14 */
15
16#ifndef LIBTERM_CLIENT_DEFAULT_TRIGGERS_H
17#define LIBTERM_CLIENT_DEFAULT_TRIGGERS_H
18
19#include <term/client/trigger.h>
20
21struct term_trigger term_trigger_kill;
22struct term_trigger term_trigger_int;
23
24#endif // LIBTERM_CLIENT_DEFAULT_TRIGGERS_H
25