blob: 3506d1fe22d0fb928a74a7f668daf0c63ae3ecbe [file] [log] [blame]
Stéphane Marchesinae37e6c2014-08-08 18:19:40 -07001/*
2 * Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#ifndef TERM_H
8#define TERM_H
9
10#include "input.h"
11
12int term_init(int32_t width, int32_t height, int32_t pitch);
13void term_close();
14void term_redraw();
15int term_run();
16
17#endif