File: kfuzz.h

package info (click to toggle)
libkate 0.4.1-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 5,516 kB
  • sloc: ansic: 10,960; sh: 10,344; yacc: 2,358; python: 767; lex: 363; makefile: 245
file content (24 lines) | stat: -rw-r--r-- 709 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* Copyright (C) 2008 Vincent Penquerc'h.
   This file is part of the Kate codec library.
   Written by Vincent Penquerc'h.

   Use, distribution and reproduction of this library is governed
   by a BSD style source license included with this source in the
   file 'COPYING'. Please read these terms before distributing. */


#ifndef KATE_kfuzz_h_GUARD
#define KATE_kfuzz_h_GUARD

#include <ogg/ogg.h>
#include "kate/kate.h"

#ifdef DEBUG
extern unsigned long gen_fuzz(unsigned long *seed);
extern unsigned long gen_fuzz_n(unsigned long *seed,unsigned long n);
extern void fuzz_kate_packet(unsigned long *seed,kate_packet *kp);
extern void fuzz_ogg_packet(unsigned long *seed,ogg_packet *op);
#endif

#endif