1147493Sgad/*-
2147493Sgad * Copyright (c) 2005  - Garance Alistair Drosehn <gad@FreeBSD.org>.
3147493Sgad * All rights reserved.
4147493Sgad *
5147493Sgad * Redistribution and use in source and binary forms, with or without
6147493Sgad * modification, are permitted provided that the following conditions
7147493Sgad * are met:
8147493Sgad *   1. Redistributions of source code must retain the above copyright
9147493Sgad *      notice, this list of conditions and the following disclaimer.
10147493Sgad *   2. Redistributions in binary form must reproduce the above copyright
11147493Sgad *      notice, this list of conditions and the following disclaimer in the
12147493Sgad *      documentation and/or other materials provided with the distribution.
13147493Sgad *
14147493Sgad * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15147493Sgad * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16147493Sgad * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17147493Sgad * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18147493Sgad * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19147493Sgad * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20147493Sgad * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21147493Sgad * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22147493Sgad * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23147493Sgad * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24147493Sgad * SUCH DAMAGE.
25147493Sgad *
26147493Sgad * The views and conclusions contained in the software and documentation
27147493Sgad * are those of the authors and should not be interpreted as representing
28147493Sgad * official policies, either expressed or implied, of the FreeBSD Project.
29147493Sgad *
30147493Sgad * $FreeBSD$
31147493Sgad */
32147493Sgad
33147493Sgadvoid		 search_paths(char *path, char **argv);
34147493Sgadvoid		 split_spaces(const char *str, int *origind, int *origc,
35147493Sgad		    char ***origv);
36147493Sgad
37147493Sgadextern int	 env_verbosity;
38