path.h revision 1.1
138451Smsmith/*	$OpenBSD: path.h,v 1.1 2013/03/20 21:49:59 kurt Exp $	*/
238451Smsmith
338451Smsmith/*
438451Smsmith * Copyright (c) 2013 Kurt Miller <kurt@intricatesoftware.com>
538451Smsmith *
638451Smsmith * Permission to use, copy, modify, and distribute this software for any
738451Smsmith * purpose with or without fee is hereby granted, provided that the above
838451Smsmith * copyright notice and this permission notice appear in all copies.
938451Smsmith *
1038451Smsmith * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1138451Smsmith * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1238451Smsmith * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1338451Smsmith * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1438451Smsmith * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1538451Smsmith * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1638451Smsmith * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1738451Smsmith */
1838451Smsmith
1938451Smsmith#ifndef __DL_PATH_H__
2038451Smsmith#define __DL_PATH_H__
2138451Smsmith
2238451Smsmithchar ** _dl_split_path(const char *searchpath);
2338451Smsmithvoid _dl_free_path(char **path);
2438451Smsmith
2538451Smsmith#endif /*__DL_PATH_H__*/
2638451Smsmith