blob: f57999edd7c697fe64da3c3183e57775ec42fd87 [file] [log] [blame]
Jaggerbaa20ea2015-09-06 01:12:08 +02001/*
2 *
3 * honggfuzz - display statistics
4 * -----------------------------------------
5 *
6 * Author: Robert Swiecki <swiecki@google.com>
7 *
8 * Copyright 2010-2015 by Google Inc. All Rights Reserved.
9 *
10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
11 * not use this file except in compliance with the License. You may obtain
12 * a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS,
18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
19 * implied. See the License for the specific language governing
20 * permissions and limitations under the License.
21 *
22 */
23
Jagger876a74c2016-02-09 22:09:11 +010024#ifndef _HF_DISPLAY_H_
25#define _HF_DISPLAY_H_
Jaggerbaa20ea2015-09-06 01:12:08 +020026
Robert Swiecki10eeb0a2017-09-28 15:42:52 +020027#include "honggfuzz.h"
28
Robert Swiecki4e595fb2017-10-11 17:26:51 +020029extern void display_display(honggfuzz_t* hfuzz);
Robert Swiecki1f1ce172017-02-10 03:43:00 +010030extern void display_init(void);
Jaggerbaa20ea2015-09-06 01:12:08 +020031
32#endif