source: zzuf/trunk/src/fd.h @ 1671

Last change on this file since 1671 was 1671, checked in by Sam Hocevar, 16 years ago
  • Oops, ratio should be a double, not a float.
  • Property svn:keywords set to Id
File size: 1.0 KB
Line 
1/*
2 *  zzuf - general purpose fuzzer
3 *  Copyright (c) 2006 Sam Hocevar <sam@zoy.org>
4 *                All Rights Reserved
5 *
6 *  $Id: fd.h 1671 2007-01-14 20:47:18Z sam $
7 *
8 *  This program is free software. It comes without any warranty, to
9 *  the extent permitted by applicable law. You can redistribute it
10 *  and/or modify it under the terms of the Do What The Fuck You Want
11 *  To Public License, Version 2, as published by Sam Hocevar. See
12 *  http://sam.zoy.org/wtfpl/COPYING for more details.
13 */
14
15/*
16 *  fd.h: file descriptor functions
17 */
18
19extern void _zz_include(char const *);
20extern void _zz_exclude(char const *);
21extern void _zz_setseed(int32_t);
22extern void _zz_setratio(double);
23extern void _zz_setautoinc(void);
24extern void _zz_fd_init(void);
25extern void _zz_fd_fini(void);
26
27extern int _zz_mustwatch(char const *);
28extern int _zz_iswatched(int);
29extern void _zz_register(int);
30extern void _zz_unregister(int);
31extern long int _zz_getpos(int);
32extern void _zz_setpos(int, long int);
33extern void _zz_addpos(int, long int);
34extern struct fuzz *_zz_getfuzz(int);
35
Note: See TracBrowser for help on using the repository browser.