blob: fcbcb053d9fb91df147630c7edb6f71c7d8d2438 [file] [log] [blame]
robert.swiecki@gmail.coma3e014e2015-02-22 14:33:46 +00001/*
2 *
3 * honggfuzz - buffer mangling routines
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_MANGLE_H_
25#define _HF_MANGLE_H_
robert.swiecki@gmail.coma3e014e2015-02-22 14:33:46 +000026
27#include <stdint.h>
28
Robert Swieckia96d78d2016-03-14 16:50:50 +010029extern void mangle_mangleContent(honggfuzz_t * hfuzz, fuzzer_t * fuzzer);
Robert Swieckieab0e862016-10-18 23:04:42 +020030
robert.swiecki@gmail.comace40862015-03-08 07:09:56 +000031extern bool mangle_Resize(honggfuzz_t * hfuzz, uint8_t * buf, size_t * bufSz);
robert.swiecki@gmail.coma3e014e2015-02-22 14:33:46 +000032
33#endif