1174915Srwatson/*-
2174915Srwatson * Copyright (c) 2007 Robert N. M. Watson
3174915Srwatson * All rights reserved.
4174915Srwatson *
5174915Srwatson * Redistribution and use in source and binary forms, with or without
6174915Srwatson * modification, are permitted provided that the following conditions
7174915Srwatson * are met:
8174915Srwatson * 1. Redistributions of source code must retain the above copyright
9174915Srwatson *    notice, this list of conditions and the following disclaimer.
10174915Srwatson * 2. Redistributions in binary form must reproduce the above copyright
11174915Srwatson *    notice, this list of conditions and the following disclaimer in the
12174915Srwatson *    documentation and/or other materials provided with the distribution.
13174915Srwatson *
14174915Srwatson * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15174915Srwatson * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16174915Srwatson * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17174915Srwatson * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18174915Srwatson * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19174915Srwatson * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20174915Srwatson * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21174915Srwatson * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22174915Srwatson * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23174915Srwatson * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24174915Srwatson * SUCH DAMAGE.
25174915Srwatson *
26174915Srwatson * $FreeBSD$
27174915Srwatson */
28174915Srwatson
29174915Srwatson#ifndef DDB_H
30174915Srwatson#define	DDB_H
31174915Srwatson
32178515Srwatsonvoid	ddb_capture(int argc, char *argv[]);
33174915Srwatsonvoid	ddb_script(int argc, char *argv[]);
34174915Srwatsonvoid	ddb_scripts(int argc, char *argv[]);
35174915Srwatsonvoid	ddb_unscript(int argc, char *argv[]);
36174915Srwatsonvoid	usage(void);
37174915Srwatson
38174915Srwatson#endif /* DDB_H */
39